??? 04/04/08 14:25 Read: times |
#152958 - GET and POST Responding to: ???'s previous message |
Andy Neil said:
GET is for getting stuff from the server; ie, downloading; Both GET and POST can be used for submitting or retrieving data from the server. However, POST should be used if you need to submit large amounts of data (like message text in this forum). Using GET can be useful, though, if you want to be able to bookmark a page. You can't effectively bookmark a page that was retrieved with the POST command. Regards, Craig Steiner |