Hi folks,
I have a form with a button on it "Payfast - pay now"
When I select the button it does what it is surposed to do however I would like it to open outside the I frame?
the reason for this is that the person making the payment might want to come back to the orginal entry form page and the page that opens by selction is a page on another site.
The might be a way of doing this by looking at the attached information
Any support here is urgently required.
I have a form with a button on it "Payfast - pay now"
When I select the button it does what it is surposed to do however I would like it to open outside the I frame?
the reason for this is that the person making the payment might want to come back to the orginal entry form page and the page that opens by selction is a page on another site.
The might be a way of doing this by looking at the attached information
PHP Code:
<form action="https://www.payfast.co.za/eng/process" method="post">
<input type="hidden" name="cmd" value="_paynow">
<input type="hidden" name="receiver" value="robhar@mweb.co.za">
<input type="hidden" name="item_name" value="Tournament Entry Payment">
<input type="hidden" name="item_description" value="To Enter - Payment is requires">
<input type="hidden" name="amount" value="120.00">
<input type="hidden" name="return_url" value="http://www.gnjgf.co.za/d.php">
<input type="hidden" name="cancel_url" value="http://www.gnjgf.co.za/Glacier_Main.html">
<input type="image" src="http://www.payfast.co.za/images/buttons/paynow_basic_logo.gif" width="95" height="57" alt="Pay Now" title="Pay Now with PayFast">
</form>
Comment