hi i need coding help i have a paypal form and it Posts data to a https site it the link changed each time so i cant make it send to my php self server and i need a session of the radio button to update my database once they have payed it send the viewer back to a page where it will update the points so can anyone help me here is the code for form:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" id="payPalForm">
<input type="hidden" name="item_number" value="01 - Payment to Build And Trade">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="business" value="Myemail">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="return" value="http://www.buildandtrade.outwardsinc.com/paymentcomplete.php">
<input name="item_name" type="hidden" value="Name">
<table align="center" border="1"width="500px">
<tr>
<th>Number of Toco Points</th><th>Price</th>
</tr>
<tr>
<td align="center" width="50%"><input type="radio" id="1000" value="5.00" name="amount">1000 Toco Points</td>
<td align="center" width="50%">£5.00</td>
</tr>
<tr>
<td align="center" width="50%"><input type="radio" id="2000" value="10.00" name="amount">2000 Toco Points</td>
<td align="center" width="50%">£10.00</td>
</tr>
<tr>
<td align="center" width="50%"><input type="radio" id="3000" value="12.00" name="amount">3000 Toco Points</td>
<td align="center" width="50%">£12.00</td>
</tr>
</table>
<input type="submit"name="Submit" value="Submit">
</form>