You should only use POST if you need to hide the information from the user. Otherwise use GET. When you use GET the params are passed in the URL and so no server side memory is used. When you use POST those params are stored in the web server memory and this can cause load problems if you experience high vistor numbers.



LinkBack URL
About LinkBacks




also.. you should use POST when you're posting a large amount of data, as a url is limited to whatever the browser decides is a decent limit, so if its a long long long POST you should use POST if small vars like PAGE makes it easier for your users to link to friends and spyders to index you..
Bookmarks