Hi
it's so simple that I can't believe that it doesn't work! Look at this code:
<?PHP
if ( isSet($_POST["damn"]) )
print $_POST["damn"];
?>
</HEAD>
<BODY>
<form>
<input type="text" name="damn"><br />
<input type="submit">
</form>
</BODY>
</HTML>
When I write in the text input and submit the form, what is entered is not shown in the page, but rather in the location bar of my explorer as a query string! For example if I enter "hello" and then press the submit button, I get this in the location bar:
index.php?damn=hello
Note: index.php is the name of the page.