Fwd: [PHP-WIN] Back button in PHP

2007-02-01 Thread Martin Alsinet
-- Forwarded message -- From: Martin Alsinet <[EMAIL PROTECTED]> Date: 02-Feb-2007 00:20 Subject: Re: [PHP-WIN] Back button in PHP To: Alf Stockton <[EMAIL PROTECTED]> Hi Alf On 01/02/07, Alf Stockton <[EMAIL PROTECTED]> wrote: I seem to remember that there

Re: [PHP-WIN] Back button in PHP

2007-02-01 Thread Andreas Lysdal
It only possible in javascript: try this link a then search: http://javascriptsource.internet.com/ Alf Stockton skrev: I seem to remember that there was a simple call to get reference to the the screen previous to where the client currently is. Please remind me how this is done? I need to

Re: [PHP-WIN] Back button in PHP

2007-02-01 Thread Jarrett Meyer
07 8:59:23 AM Subject: [PHP-WIN] Back button in PHP I seem to remember that there was a simple call to get reference to the the screen previous to where the client currently is. Please remind me how this is done? I need to place a Back button on my clients screens. -- Regards, Alf Stocktonww

[PHP-WIN] Back button in PHP

2007-02-01 Thread Alf Stockton
I seem to remember that there was a simple call to get reference to the the screen previous to where the client currently is. Please remind me how this is done? I need to place a Back button on my clients screens. -- Regards, Alf Stocktonwww.stockton.co.za You will be married within

Re: Fw: [PHP-WIN] Back button error

2003-07-18 Thread Luis Ferro
They are much diferent... Get has a limit of about 2k of content that can be sent thru... and there are things that are impossible to do with get, like sending files (which uses a "special" kind of post). Get has also the problem that the form you sent will be present on the address box of the

Re: [PHP-WIN] Back button error

2003-07-15 Thread Cristian MARIN
The Get method is less secure because it will encode all the vars into the URL so after the submit your link will look like this: http://www.mysite.com/formresponse.php?id=3&name=Gigi&firstname=alexandru Do not submit in this way the forms containing very important data like username, passwords, o

SV: [PHP-WIN] Back button error

2003-07-15 Thread Henrik Hornemann
IL PROTECTED] > Emne: Fw: [PHP-WIN] Back button error > > > Cristian, > > You said by using the method in a form as Get in place of > Post it allows me to use the back button without getting the > error message: > Warning: Page has Expired The page you requested was cre

Fw: [PHP-WIN] Back button error

2003-07-14 Thread Harpreet
Cristian, You said by using the method in a form as Get in place of Post it allows me to use the back button without getting the error message: Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available. As a security

Re: [PHP-WIN] Back button error

2003-07-14 Thread Harpreet
Cristian, You said by using the method in a form as Get in place of Post it allows me to use the back button without getting the error message: Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available. As a security

Re: [PHP-WIN] Back button error

2003-06-17 Thread Cristian MARIN
"Harpreet" <[EMAIL PROTECTED]> > > Cc: "Windows Helplist (PHP)" <[EMAIL PROTECTED]> > > Sent: Monday, June 16, 2003 2:52 PM > > Subject: Re: [PHP-WIN] Back button error > > > > > > > Its a feature of IE. It stops you going backwa

Re: [PHP-WIN] Back button error

2003-06-17 Thread Cristian MARIN
gt; > > > Regards, > > > Harpreet > > > - Original Message - > > > From: "Stephen" <[EMAIL PROTECTED]> > > > To: "Harpreet" <[EMAIL PROTECTED]> > > > Cc: "Windows Helplist (PHP)" <[EMAIL PR

Re: [PHP-WIN] Back button error

2003-06-17 Thread Stephen
be able to go back and forward between the pages without any problems. More of a work around than a solution... Good Luck Stephen - Original Message - From: "Harpreet" <[EMAIL PROTECTED]> To: "Windows Helplist (PHP)" <[EMAIL PROTECTED]> Sent: Tuesday, June 1

Re: [PHP-WIN] Back button error

2003-06-17 Thread Harpreet
: "Harpreet" <[EMAIL PROTECTED]> To: "Windows Helplist (PHP)" <[EMAIL PROTECTED]> Sent: Tuesday, June 17, 2003 12:58 PM Subject: Re: [PHP-WIN] Back button error > I tried a manual back button > > > > > > > and also session_cache

Re: [PHP-WIN] Back button error

2003-06-17 Thread Harpreet
t (PHP)" <[EMAIL PROTECTED]> Sent: Monday, June 16, 2003 2:52 PM Subject: Re: [PHP-WIN] Back button error > Its a feature of IE. It stops you going backwards to a page which was > generated when you sent form data to it. There is no way around this, so you > will need to fi

Re: [PHP-WIN] Back button error

2003-06-16 Thread Stephen
;Harpreet" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 16, 2003 7:55 PM Subject: [PHP-WIN] Back button error > I am getting the following error when i use the IE back button. > > Warning: Page has Expired The page you requested was created using > infor

[PHP-WIN] Back button error

2003-06-16 Thread Harpreet
I am getting the following error when i use the IE back button. Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available. As a security precaution, Internet Explorer does not automatically resubmit your information fo

[PHP-WIN] back button

2003-06-06 Thread Harpreet
I am having problems using the back button in my web application I created using PHP. Whenever i press the back button or forward button to go to the previous page i get the follwoing message: Warning: Page has Expired The page you requested was created using information you submitted in a form.

[PHP-WIN] back button

2001-12-20 Thread Projetos
hi, i´m doing a mysql-win2000-apache-php application and i wanna put a funtion (in php) to be fired in my definde back button, but dammit that blasted funciont works... too much... every time i load up the php with that button the function is fired even if the button is not pressed... any ideas to

Re: [PHP-WIN] Back button using sessions

2001-11-19 Thread Troy Moreland
I tried your option 2 and it worked great! Not sure if that degrades performance or not but getting rid of those annoying messages is much worse that a slight degradation to me! Thanks! "Egil Helland" <[EMAIL PROTECTED]> wrote in message 2008233831.BGQY4910.mta01@workhorse">news:20082338

Re: [PHP-WIN] Back button using sessions

2001-11-18 Thread Egil Helland
On Sun, 18 Nov 2001 12:01:11 -0600, Troy Moreland wrote: >Can someone tell me how to get around the following problem: > >I am using sessions to store a person's ID and password that they >authenticate with at the start page. The entire web site is secured >this way. The problem is that hitting

[PHP-WIN] Back button using sessions

2001-11-18 Thread Troy Moreland
Can someone tell me how to get around the following problem: I am using sessions to store a person's ID and password that they authenticate with at the start page. The entire web site is secured this way. The problem is that hitting the back key often gives the "This page has expired, hit Refre