Forum Moderators: coopster
<form name="test" id="test" method="post" action="process.php">
<input type="text" name="input01" id="input01" value="input01" /><br />
<input type="text" name="input02" id="input02" value="input02" /><br />
<input type="text" name="input03" id="input03" value="input03" /><br />
<input type="text" name="input04" id="input04" value="input04" /><br />
<input type="submit" />
</form>
<?php
echo '<pre>';
print_r($_POST);
?>
Array
(
[input01] => input01
[input02] => input02
[input03] => input03
[input04] => input04
)
Array
(
)
But I am sure that you need to name the submit button in order for it to work (well definately if your checking the status)