Bruce A. Julseth wrote:
> I have a decision tree where I need to load different pages depending upon
> the conditions. My problem is I don't know how to quit a page and load a new
> page.
>
> How do I quit one page and start another page?
>
> Thank you.
>
>
>
header('Location: http://www.example.com/page2.php');
exit();
The header() call must be made before any output is sent to the browser.
Alternatively, you can include() the appropriate file in the current
script.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================