I'm a php developer but the concept of get and post remains the same for any scripting language.
when you do a POST, the variables passed are hidden but with GET method, the variables passed are visible in the url
eg
if you had a form like below
<form action="action.php" method="get">
<input type="text" name="id" value="">
<input type="submit">
</form>
so when you click on submit, your browser will send the variables to the file action.php, and the url will appear as such
http://yourdomain.com/action.php?id=something
but when you do a POST, you will not see the variables
hope this helps
|