<body>
<form action="phpform.php" method="post">
<input type="text" name="name"><br>
<input type="submit" name="submit" value="submit">
</form>
<?
print $_POST['name'];
?>
The above code is working on my localserver(Windows 2000) and one web server of linux.But it is not working on another webserver with operating system FreeBSD.
What may be the probable reason.
I have tried $POST,$GET,$_REQUEST. globals are also "on" on my new webserver(FreeBSD web server).
Thanks in advance.