Why does this not pass the value of userfile to search.php...
index
<title> PHP test </title>
<body>
<form method=post action=\"search.php\">
Search: <input type=\"text\" name=\"userfile\" size=15>
<input type=\"submit\" value=\"Search\">
</form></body>
search.php
<head>
<title>Search Results</title>
</head>
<body>
<p> Results </p>
<?
echo $userfile;
?>
</body>
Ben