These are the variables that i need to be passed from Paypal to my signup.cgi. I just had the address_street in the previous post as a example to just to shorten the post :)
$item_name = $variable{'item_name'};# Package name
$item_number = $variable{'item_number'};
$invoice = $variable{'invoice'};
$payer_email = $variable{'payer_email'};#users email
$first_name = $variable{'first_name'};
$last_name = $variable{'last_name'};
$address_name = $variable{'address_name'};
$address_street = $variable{'address_street'};
$address_city = $variable{'address_city'};
$address_state = $variable{'address_state'};
$address_zip = $variable{'address_zip'};
$address_country = $variable{'address_country'};
$custom_a = $variable{'on0'};# domain name
$plan = $variable{'on1'};# hosting package
None of the above are making it to my signup.cgi so i can finish processing their order.
It works using the example by paypal_pb
http://www.paypaldev.org/topic.asp?TOPIC_ID=1658
but not live.
I just noticed that i have <FORM action=https://www.paypal.com/cgi-bin/webscr method=post>
in the form i send to paypal and <FORM action=http://www.paypal.com/cgi-bin/webscr method=post>
to read incoming data from to my signup.cgi, could that be the reason no variables are being passed back? Else im stumped...
Michael