Here is my code
All I want to do is pass whatever is in username 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;
?>
Why won't it work