Ok I was just messing around trying to figure out why a php script won't work with a regular html form...when i put
<html>
<form>
<input type="text" name="name"><br><br>
<input type="submit" value="Submit">
</form>
<br><br>
Entered Text:
<?php
echo($name);
?>
</html>
I can't get it to display the variable. When the form submits it changes the link to "blah.php?name=1234" I also tried making it an html file but to the same result. The variable $name just remains blank.