I am also having a problem with using the POST method. I get this error:
HTTP 500 - Internal server error
Here is my code:
<form method="post" action="default.php">
Enter something here:
<input name="author" type="text" /> <input type="submit" value="Submit" />
</form>
and...
<?php
echo "You entered: " . $author;
?>
I've also tried this in place of $author:
HTTP_POST_VARS['author']
I am running PWS & NT4.0 Ser. Pack 6
Is this the same problem or something different?
Help!