with ASP or Javascript, i am able to redirect to another link, for example Response.Redirect("AnotherLink.html"); how am i gonna do it with PHP? please show me, i will appreciate it.
An example:
$target="your URL here"; Header( "Location: $target");
That's all.
Good Luck.
SaS
it said : Warning: Cannot add header information - headers already sent by (output started at /home/sites/site148/web/index.phtml:9) in /home/sites/site148/web/index.phtml on line 17
You can use this command only before any output has been made to the browser. Before any echo or print command. You have to match this standart.
Try to place Header command before any echo or print.
SaS.