Answer
Jul 17, 2007 - 05:46 AM
Don't change any html. In the function for your registration, once it is complete and everything has worked successfully, redirect in the code to your paypal page. Depending on the language you're using you'll have slightly different results.
PHP
header("Location: http://www.paypal.com/my/page?with=params&that=should&be=set");
ASP.NET C#
Server.Redirect("http://www.paypal.com/my/page?with=params&that=should&be=set")
;
PHP
header("Location: http://www.paypal.com/my/page?with=params&that=should&be=set");
ASP.NET C#
Server.Redirect("http://www.paypal.com/my/page?with=params&that=should&be=set")
;
Add New Comment