Ohne Formular wird das nichts.
<form action="" method="post">
<table cellpadding="1" cellspacing="3" border="0">
<tr>
<td>Vorname:</td>
<td><input name="Vorname"></td>
</tr>
</table>
<input type="submit" value="Anmelden" name="Anmeldung" />
</form>
<?php
echo "Name: " . $_POST["name"];
?>