RE: [PHP-DB] How to avoid: Warning: Page has Expired

2002-04-09 Thread Peter Lovatt
If you change the form action to 'get' instead of 'post' this avoids the message. form action=script.php3 method=get 'Get' data is displayed on the address line eg http://domain.com/script.php3?photoID=123viewtype=full so it should be avoided for sensistive data like passwords or credit card

RE: [PHP-DB] How to avoid: Warning: Page has Expired

2002-04-09 Thread Jonathan Hilgeman
I've addressed this problem here: http://php.sitecreative.com/faq.php - Jonathan -Original Message- From: John Hughes [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 12:30 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] How to avoid: Warning: Page has Expired I have the first

Re: [PHP-DB] How to avoid: Warning: Page has Expired

2002-04-09 Thread olinux
Using the GET method is a great solution, but sometimes you just gotta POST! I have found the best solution to be using a separate file to do the processing. For example login.php submits 'user' and 'password' to auth.php. auth.php queries the db for 'user' and 'password' and redirects [via