in reply to Re: Passing Data between Scripts
in thread Passing Data between Scripts
Although query string length limits provide one reason to use POST instead of GET, these two methods also have different meanings. Use GET when the request doesn't change anything (such as a search engine query) and POST when the request has an effect (such as updating a database, sending email). See Methods GET and POST in HTML forms or section 9 of RFC 2616.
If you can't combine your code into one script, you should investigate some kind of session mechanism.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re:^3 Passing Data between Scripts
by cLive ;-) (Prior) on Jan 06, 2004 at 19:11 UTC |