views:

9

answers:

0

I'm trying to pass some additional variables to PayPal IPN... it says it should accept these varaibles. I'm putting these hidden elements in the form:

<input type="hidden" name="address_country_code" value="xxxx" />
<input type="hidden" name="first_name" value="xxxx" />
<input type="hidden" name="last_name" value="xxx" />
<input type="hidden" name="contact_phone" value="xxxx" />
<input type="hidden" name="address_state" value="xxxx" />
<input type="hidden" name="address_city" value="xxxx" />
<input type="hidden" name="address_country" value="xxxx" />
<input type="hidden" name="address_street" value="xxxx" />
<input type="hidden" name="email" value="xxxx" />
<input type="hidden" name="address_zip" value="xxxx" />

But when I click the "buy now" button, only the first name, last name, country, and email are filled in. Why aren't the others getting filled in?