say you have this form on your page:
<form action="your_page.php" method="GET">
<input type="text" name="item" value="value">
</form>
When it is submitted, the browser will navigate to your_page.php?item=value and the data will be available in the $_GET variable.
say you have this form on your page:
<form action="your_page.php" method="POST">
<input type="text" name="item" value="value">
</form>
NOTICE THE VALUE CHANGE FOR METHOD IN THE <FORM> TAG
When it is submitted, the browser will navigate to your_page.php and the data will be available in the $_POST variable.