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
Name:
Age:
PHP file
Hi <?php echo ($_POST['fname']); ?>.
You are <?php echo (int)$_POST['age']; ?> years old.
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.
Comments
[link=http://www.private-escort-girls.com]Escort Berlin[/link]
[link=http://www.private-escort-girls.de]Escorts Munich[/link]
[link=http://www.sexyescortberlin.com]Escorts Berlin[/link]
Jonathanganesh
SEO & WEb Expert
Cogzidel Technologies pvt ltd,
http://www.cogzidel.com/services/web-development
You used single quotes. you should use double quotes..
do it as follows..
Hi <?php echo $_POST["fname"]; ?>
You are <?php echo $_POST["age"]; ?> years old.