I'm just begining PHP.I've installed PHP 4.3.6 on Apache 1.3.29 as a module.But
when completing the code follows I didn't got the expected results.The problem is that: I type
<HTML>
<!-- jobapp.html -->
<form action="jobapp_action.php" method=POST>
<input type=text name="username">
<input type=Submit name="Submit data">
</form>
</html>
... in one file called jobapp.html
after that
<html>
<!-- jobapp_action.php -->
<?php
echo "Welcome, ". $username . "!";
?>
</html>
... in other file called jobapp_action.php
but the result is not the expected.
the browser print Welcome, ! no Welcome, (the typed value in the textbox).
I'll be very happy if you help me...
Thanks anuway.