Hi,
I have a problem with a form and the POST method. Consider this example:
<form action="/dir-to-this-form" method="POST">
<input type="text" name="var">
<input type="submit" value="send">
</form>
<?
echo $_POST['var'];
?>
It is supposed to output the content of var, but it doesn't. It simply won't get the variable. But when I use GET or set action="/dir/script.php" it works. Does anybody know a way to fix this example, that would work with POST?