I have php working on my computer, and i can do everything with the program , the only problem is that when i send a form , the other page don't catche the results.
here's what i do:
I have php working on my computer, and i can do everything with the program , the only problem is that when i send a form , the other page don't catche the results.
here's what i do:
page input1.php:
<html>
<form method="post" action="input2.php">
First name:<input type="Text" name="first"><br>
Last name:<input type="Text" name="last"><br>
Nick Name:<input type="Text" name="nickname"><br>
<input type="Submit" name="submit" value="Enter information"></form>
</html>
page input2.php:
<html>
<?
echo $first . "<br>". $last . "<br>". $nickname ;
?>
</html>
what's wrong with the code, please help,
thank's