i have a php code like this
<html>
<body>
<center>
<FORM action="" method="post">
<input type="hidden" name="form_action" value="1">
<table border=1>
<tr><td>test post</td><td><input type="text" size="60" name="post" value="http://site.com/"></td></tr>
</table>
<br>
<INPUT class=submit type="submit" value="[SUBMIT]" name="Submit">
</FORM>
</center>
</body>
</html>
<?
if ($_POST['form_action']) {
print_r($_POST['post']);
}
?>
i want to print the form post when Some one press the submit button.Where is the problem?