After hours of surgfing the forums I finally decided to ask myself.
My problem is:
Form variables transmitted by POST method will not work. the variables remain empty on the page they are sent to. And I do use the $_POST['variableName'] to retrieve them. GET seemes to work fine.
I know had this thing working before, but since my IIS decided to crash on me and failed to start again, I had to reinstall lots of stuff.
My system is:
WinXP, apache, MySql, PHP 4.2.3.
I have registered_globals set to off, and it won't help if I set it on (it shouldn't help, I know).
This is my home pc and I run the site on localhost.
Here is some example code.
<form name=quickSearch action=search.php method=post>
<input type=text name=search><input type=submit value="Hae..." class=button>
</form>
once I submit the form, it goes to search.php but
$_POST['search'] remains empty.
Thanks for your time.