action="action_page.php"> code example
Example: action_page.php
<form method="GET">
<input type="text" name="someName">
//The Name Attribute will be put into the _GET inside of php
<input type="submit" value="Submit">
</form>
<?php
$var = $_GET("TestUser1");
echo ($var);
?>