HTML Code
Code: Select all
<form action="" method="post">
<input type="text" id="blah"/>
<input type="Submit" value="Save"/>
</form>Code: Select all
if ($_POST)
echo 'Information posted';Moderator: General Moderators
Code: Select all
<form action="" method="post">
<input type="text" id="blah"/>
<input type="Submit" value="Save"/>
</form>Code: Select all
if ($_POST)
echo 'Information posted';Code: Select all
<pre><?php
print_r($_POST);
?></pre>
<form method="post" action="">
<input type="text" name="txtExample" />
<input type="submit" name="btnSubmit" value="Submit" />
</form>