- Mar 22, 2013
- 9,146
- 10,489
I have a question, if somebody can figure it out.
I have this code for my Paypal button that people can click to pay for things:
This calls my Paypal email from a php file.
Now, I have this for Skrill and it works:
If I change it to this:
Now it doesn't work. It takes me to an error page:
code "BAD_REQUEST"
message "Invalid parameter"
Any idea how I can make this work? To call the email with php code, just like I do for the Paypal code in my first example.
Thanks
I have this code for my Paypal button that people can click to pay for things:
<input type="hidden" name="business" value="<?php echo $paypalemail; ?>">
This calls my Paypal email from a php file.
Now, I have this for Skrill and it works:
<input type="hidden" name="pay_to_email" value="[email protected]">
If I change it to this:
<input type="hidden" name="pay_to_email" value="<?php echo $paypalemail; ?>">
Now it doesn't work. It takes me to an error page:
code "BAD_REQUEST"
message "Invalid parameter"
Any idea how I can make this work? To call the email with php code, just like I do for the Paypal code in my first example.
Thanks