Re: [PHP] Page load based on logic

2004-07-31 Thread Justin Patrin
On Sat, 31 Jul 2004 01:58:48 -0400, Michael Harding <[EMAIL PROTECTED]> wrote: > Thank you. > > You suggestion will work for some cases. However it doesn't actually load a > different page. Sometime I will need to load a completely new URL instead > of just a local PHP page...ie: www.somepage.co

Re: [PHP] Page load based on logic

2004-07-31 Thread Michael Harding
Huh? I don't understand. Sorry... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Page load based on logic

2004-07-30 Thread Jason Wong
On Saturday 31 July 2004 13:58, Michael Harding wrote: > You suggestion will work for some cases. However it doesn't actually load > a different page. Sometime I will need to load a completely new URL > instead of just a local PHP page...ie: www.somepage.com. What exactly is it that you want to

Re: [PHP] Page load based on logic

2004-07-30 Thread Michael Harding
Thank you. You suggestion will work for some cases. However it doesn't actually load a different page. Sometime I will need to load a completely new URL instead of just a local PHP page...ie: www.somepage.com. Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: htt

Re: [PHP] Page load based on logic

2004-07-30 Thread Justin Patrin
On Fri, 30 Jul 2004 17:12:01 -0400, Michael Harding <[EMAIL PROTECTED]> wrote: > I have a if statement. > > if (this){ > load page1.php; > } else { > load page2.php; > } > > I simply want to go to different page depending on the results of a logic > statement. I can't find a function or

[PHP] Page load based on logic

2004-07-30 Thread Michael Harding
I have a if statement. if (this){ load page1.php; } else { load page2.php; } I simply want to go to different page depending on the results of a logic statement. I can't find a function or statement that allow me to pass the page to. I am looking for a "load()" or goto() type call. I d