RE: [PHP] Branching to a page

2003-09-15 Thread chris . neale
I don't understand what this achieves? Tell me more... C -Original Message- From: Todd Cary [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 03:30 To: [EMAIL PROTECTED] Subject: [PHP] Branching to a page Back in the earlier days of PHP, pages were not cached so I developed a m

[PHP] Branching to a page

2003-09-14 Thread Todd Cary
Back in the earlier days of PHP, pages were not cached so I developed a method of "branching to a page" by opening a new socket. Since it has worked over the years in quite a variety of applications, I have not changed...but maybe I should. Are there any glaring deficiencies with doing this:

Re: [PHP] Branching to a page

2001-12-13 Thread Jason G.
Just send a redirect header. header("Location: nextpage.php"); exit; -Jason Garber IonZoft.com At 08:45 AM 12/11/2001 -0800, Todd Cary wrote: >I open a socket if I am in the middle of a php script to branch to a >page so that I can send the header information. However, I understand >that this

[PHP] Branching to a page

2001-12-11 Thread Todd Cary
I open a socket if I am in the middle of a php script to branch to a page so that I can send the header information. However, I understand that this is not how most php programmers do it. Could someone share with me the way it is done with php? In more detail, this is how I structure a page: 1