On Tuesday 30 April 2002 12:36, baldey_uk wrote: > Hello all, > > How can i force a transfer to another php page from an if statement? > > I have been trying: > > if (condition){ > > echo "<A HREF=3D"www.link.com">Link</A>"; > > } > else { > > something else > }
if (something) { header("Location: http://www.somewhere.com"); } else { whatever; } -- Jason Wong -> Gremlins Associates -> www.gremlins.com.hk Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applications Development * /* Use an accordion. Go to jail. -- KFOG, San Francisco */ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php