Buttons have names
<input align="center" name="submit" type="submit" value="Submit">
and when you click on it you get redirected to another page. On another page you can refer to the name of the button
if (isset ($_POST['submit']))
{do something;
}
What if I want to replace a button with a link.
echo '<a href="'.$_SERVER['REQUEST_URI'].'">Edit</a>
How would I refer to this link on another page?