I really don't like Paypal's IPN, but never-the-less... I have a problem.
I'm trying to send 6 variables to paypal, but it only allows me to send 2... Does anyone know how I could send more than 2, or combine 3 together, into one, so that I would only have 6 $_POST's to send?
Heres what I mean:
<table><tr><td><input type="hidden" name="on0" value="name">Name:</td>
<td><input type="text" name="os0" maxlength="200"></td></tr>
<tr><td><input type="hidden" name="on1" value="username">Username:</td>
<td><input type="text" name="os1" maxlength="200"></td></tr>
<tr><td><input type="hidden" name="on2" value="email">E-mail:</td>
<td><input type="text" name="os2" maxlength="200"></td></tr>
<tr><td><input type="hidden" name="on3" value="domain">Domain Name:</td>
<td><input type="text" name="os3" maxlength="200"></td></tr>
<tr><td><input type="hidden" name="on4" value="password">Password:</td>
<td><input type="text" name="os4" maxlength="200"></td></tr>
<tr><td><input type="hidden" name="on5" value="referral">Referral:</td>
<td><input type="text" name="os5" maxlength="200"></td></tr>
</table>
It only sends on/s0 and 1
Also, how would I make multiple input's in a form change by selecting a different radio button? (I.e. changing plans would change 3 different things - name, id for order, and price)