Does someone have an idea, why the following script
<?php
if ($HTTP_POST_VARS["submit"]=="Submit" ) {
$user = $HTTP_POST_VARS["user"];
echo($user);
}
?>
<HEAD>
<TITLE>test</TITLE>
</HEAD>
<BODY>
<FORM ACTION="" METHOD="post">
Membername<BR>
<INPUT TYPE="text" NAME="user" SIZE="15" MAXLENGTH="60"><BR>
<INPUT TYPE="submit" NAME="submit" VALUE="Submit">
</FORM>
</BODY>
after pressing the submit-button work pretty good under MS IE, but not under Netscape (4.7)? Here I get the Error, that the page can't be loaded.
Thanks for your help.