Need help redirecting a php link that has a form submit.?

  • Thread starter Thread starter Vintage V
  • Start date Start date
V

Vintage V

Guest
So basically what I did was tweaked my website and hosted it on another; hiding my affiliate link. I want to be able to redirect them to another site after they submit to the form. Being I patterned it after my website I have hosted through CityMax.com the link won't redirect.

I need to change the original source file before I host it; what should I be looking for to change here
 
It would help if you posted the code, or even more about how you're trying to do all these things. If your form is being handled by a php file, there is no way they can see in advance what link they are going to be sent to, or even if the page will reload.

You can mask your links with javascript. âˆ*°)
 
to "redirect" with out sending <header> again simply

<?
echo "<script language=\"javascript\">window.location=\"http://someplace.com\" </script>";
?>
 
Back
Top