Hi! Im asking the question again, about my problem with variables passing thru the FORM buttons. My system not even process this simple script:
jsq1.php:
<form action="action.php" method="post">
<p>Your name: <input type="text" name="name" /></p>
<p>Your age: <input type="text" name="age" /></p>
<p><input type="submit" /></p>
</form>
action.php:
Hi <?php echo htmlspecialchars($POST['name']); ?>.
You are <?php echo (int)$POST['age']; ?> years old.
** I only get the output:
Hi . You are 0 years old.
*** You see! Its missing the input I just enter thru the form in the 1st script!!
ANY HELP??
Thanks!
Jose