Forum Moderators: coopster
Methods GET and POST determine how the form data is sent -- With GET, they are sent as the query string part of the URL ie:?item1=nnnn&item2=yyyy&itemN=999999 etc. POST sends the data as part of the request body, they are not visible in the URL, but are retrieved through the same strings in PHP like $_REQUEST[item1].
<form action="myscript.php" method="post">
If you want the same page to process your data do something like this:
<?php
if ($_POST){
do stuff here...
}
?>