Hello: I´m new in PHP, but I programmed in ASP and I used a command: Response.Redirect. With it I can redirect the navigator to another page. ¿How can I do the same with PHP?.
Thank you
Use the Location header i.e. Header( "Location: http://anotherpage.com" );
Personally, I use a little wrapper:
function redirect( $newloc ) { Header( "Location: $newloc" ); exit; }
See http://www.php.net/header
--Mike