hi every body!
i have a problem on not displaying the user input on in browser
I use php 5.0.5 with apache 2.0.49 and studying php 4 from book
every thing from the first chapter worked fine but in chapter form it is not working
I have a form with user name and address that php should display to browser according to book.
html form
<html>
<head>
<title>applying form</title>
</head>
<body>
<form action="form.php" method="POST">
<input type="text" name="user">
<input type="text" name="address">
<input type="submit" value="click">
</form>
</body>
</html>
form.php
<?php
print "This is $user<br>";
print "this your address $address";
?>
according to the book of php 4 that i am studing it should dispaly what ever u entred in the html form to browser.
plz help me about getting input from user and displaying to browser. and tell me where is the problem with me.