Hello every body.
I was wondering if someone could help me. I am currently trying to Create several forms and submit them from HTML forms to PHP .
however just a basic example does not even work: lets say
HTML file
<html>
<body>
<form action="welcome.php" method="post">
Name: <input type="text" name="fname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
</body>
</html>
PHP file
<html>
<body>
Hi <?php echo ($_POST['fname']); ?>.
You are <?php echo (int)$_POST['age']; ?> years old.
</body>
</html>
The output is: Hi . You are years old.
I am using WAMP server, both files are saved in www directory welcome file has a php extension. But for some reason the values just don not appear. So maybe i missed something i donno.
If you can figure it out i will be thankful.
Cheers.