Hello, I recently switched from Windows to Linux and I set up the latest versions of mysql, php etc. I have mysql running fine and all, but some of my old scripts wont work. I believe it is a problem with the POST action. For example a small script
index.html
<form method="POST" action="check.php">
<div align="left"><p><font face="BankGothic Md BT">Name</font>
<input type="text" name="name" size="14">
<br>
<BR><BR><input type="submit" value="Submit"></p>
</div></form>
check.php
<?
Echo "Your name is $name";
?>
and here is the output reguardless of what you put in:
Your name is
I dont know whats the matter, it would be great if u guys could give me a hand, thats all, thanks for your time.