Re: [PHP] codes in php for going back to previous page

2001-09-21 Thread Tamas Arpad
On Thursday 20 September 2001 21:36, Wee Chua wrote: > Hi all, > I know how to forward a page with PHP, but what if the page I want > to forward is the previous page or last page. In javascript, the > code is like javascript:historygo(-1). The reason why I want to go > back to previous page is bec

Re: [PHP] Codes in PHP

2001-09-20 Thread Mark
On Thu, 20 Sep 2001 15:49:25 -0400, Wee Chua wrote: >Hi all, >I know how to forward a page with PHP, but what if the page I want to >forward is the previous page or last page. In javascript, the code >is like >javascript:historygo(-1). The reason why I want to go back to >previous page >is because

Re: [PHP] Codes in PHP

2001-09-20 Thread Sheridan Saint-Michel
Saint-Michel Website Administrator FoxJet, an ITW Company www.foxjet.com - Original Message - From: "Wee Chua" <[EMAIL PROTECTED]> To: "PHP (E-mail)" <[EMAIL PROTECTED]> Sent: Thursday, September 20, 2001 2:49 PM Subject: [PHP] Codes in PHP > Hi all, >

Re: [PHP] Codes in PHP

2001-09-20 Thread Jason G.
Please only post a question ONCEE PHP does all of it's work on the server, Going back to a previous page (without reloading it) is done by the Web Browser. The only way I know of is maybe to have php generate an empty page html that has: onLoad="javascript:history.go(-2);" in the body tag

RE: [PHP] Codes in PHP

2001-09-20 Thread Johnson, Kirk
lt;[EMAIL PROTECTED]> > To: "PHP (E-mail)" <[EMAIL PROTECTED]> > Sent: Thursday, September 20, 2001 12:49 PM > Subject: [PHP] Codes in PHP > > > > Hi all, > > I know how to forward a page with PHP, but what if the page > I want to > > for

Re: [PHP] Codes in PHP

2001-09-20 Thread Jason G.
Please only post a question ONCEE PHP does all of it's work on the server, Going back to a previous page (without reloading it) is done by the Web Browser. The only way I know of is maybe to have php generate an empty page that has: At 03:49 PM 9/20/2001 -0400, Wee Chua wrote: >Hi all

Re: [PHP] Codes in PHP

2001-09-20 Thread Jason Bell
t;Wee Chua" <[EMAIL PROTECTED]> To: "PHP (E-mail)" <[EMAIL PROTECTED]> Sent: Thursday, September 20, 2001 12:49 PM Subject: [PHP] Codes in PHP > Hi all, > I know how to forward a page with PHP, but what if the page I want to > forward is the previous page

[PHP] Codes in PHP

2001-09-20 Thread Wee Chua
Hi all, I know how to forward a page with PHP, but what if the page I want to forward is the previous page or last page. In javascript, the code is like javascript:historygo(-1). The reason why I want to go back to previous page is because I don't want to lose any information on previous page. Can

[PHP] codes in php for going back to previous page

2001-09-20 Thread Wee Chua
Hi all, I know how to forward a page with PHP, but what if the page I want to forward is the previous page or last page. In javascript, the code is like javascript:historygo(-1). The reason why I want to go back to previous page is because I don't want to lose any information on previous page. Can