Hi to all :)
the following code is supposed to call the php page and display what the user has input in the html page, the problem is: the php page is called successfully but it is NOT displaying anything except 'Your favorite author is:' !!! can anyone please spot the problem?? I'm using php 4.4.2, internet explorer, IIS, this is a copy-paste of the code, u may try it and c 4 urself
************
text.html
************
<html>
<head>
</head>
<body>
<form method="get" action="text.php">
Who is your favorite author?
<input name="him" type="text">
<br>
<br>
<input type="submit">
</form>
</body>
</html>
************
text.php
************
<html>
<head>
</head>
<body>
Your favorite author is:
<?php
echo $him;
?>
</body>
</html>