Re: [PHP] Change POST for GET

2001-03-19 Thread Chris Lee
sessions do not allow pages to be cached, when sessions are being used th no-cache header is set. GET and POST are very differnt in some areas and very alike in others. obviously the two biggest changes is that all the variables and their values are in the url bar. I beleive most browsers

RE: [PHP] Change POST for GET

2001-03-19 Thread Altunergil, Oktay
You can use urlencode() to preserve the spaces. You don't have to any manual conversions from space to + or something else. -Original Message- From: Chris Lee [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 9:35 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Change POST for GET

[PHP] Change POST for GET

2001-03-16 Thread Jorge Alvarez
Hi there, I was using POST method on all my forms but I had to change them to GET because of "expired page" errors (I noticed this as soon as I began using PHP4 sessions). It seems that GET works well so far, but I wonder if there's something else I should be aware of. Are both methods