Hi ,
I am struggling for two to make test payment through paypal sandbox but after entering user and password simply received this image attached.I want to pay through paypal using paypal's sandbox for testing and retrund to my website (localhost) giving confirmation in "confirm.php" , here is my paypal code:
$strform="<form target='paypal' action='https://www.sandbox.paypal.com/cgi-bin/webscr' method='post'>
<input type='hidden' name='cmd' value='_s-xclick'>
<table>
<tr>
<td><input type='hidden' name='on0' value='Products'>Products</td>
</tr>
<tr>
<td>
<select name='os0'>
<option value='WiseImage'>WiseImage $68.00 USD</option>
<option value='WiseScan'>WiseScan $126.00 USD</option>
<option value='EDA'>EDA $83.00 USD</option>
</select>
</td>
</tr>
</table>
<input type='hidden' name='currency_code' value='USD'>
<input type='hidden' name='return' value='http://localhost/csoftworld/paypalinvoice/thanks.php' />
'>
<input type='image' src='https://www.sandbox.paypal.com/en_US/i/btn/btn_cart_LG.gif' border='0' name='submit' alt='PayPal - The safer, easier way to pay online! '>
<img alt='' border='0' src='https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif' width='1' height='1'>
</form>";
echo $strform;
can any one post steps?(I tried most of the examples but not matching)
Thanks in advance
Subrata