Is it possible to access the "value" information of a form input type? for example:
Code: Select all
<input type="hidden" name="ID" [b]value="3059"[/b]>
Code: Select all
$_POST['name']
Thank you.
Moderator: General Moderators
Code: Select all
<input type="hidden" name="ID" [b]value="3059"[/b]>
Code: Select all
$_POST['name']
Code: Select all
<form method="post">
<input type="hidden" name="action" value="dostuff">
</form>Code: Select all
<input type="hidden" name="ID" value="10">
Code: Select all
echo '<pre>';
print_r($_POST);
echo '</pre>';