i am running apache2.0.53 with php5
php pages are running fine but i have problem with a page with simple form
i have made a simple page with text fields for entering user name and address
and on next page i am trying to disply user and address fields variables
but i am getting this error, kindly help me out
first page's name is uinput.php
and code is given below
<html>
<head>
<title>Listing 9.2 A simlple Html form </title>
</head>
<body>
<form action ="eg93.php" method ="get">
Enter user name   plz.<br>
<input type ="text" name ="user" >
<br><br>
Enter Address <br>
<textarea name ="address" rows="5" cols="40">
</textarea>
<br>
<input type="submit" value="hit it!">
</form>
</body>
</html>
2nd page's name is eg93.php
and code is given below
<html>
<head>
<title Listing 9.3 reading input form the user </title>
</head>
<body>
<? php
print "Welcome $user <p>\n\n";
print "your address is:<p>\n\n<b>".$address. "</b>
?>
</body>
</html>
the page is not even printing a simple string like echo "Welcome" or print "Welcome"
the error description is
Parse Error: syntax error, unexpected T_PRINT in C:\program files\apache group\apache2\htdocs\eg93.php on line 7