I have a PHP4 site hosted on IIS/NT4.
I'll go through this step by step...
When I browse to www.mysite.com I am being served up index.php, but the browser still shows only www.mysite.com. (which is cool)
Then, when I submit a form through GET I am then sent to...
www.mysite.com/?foo1=value&foo2=value
This is a problem because then the index.php script cannot see those url variables. I don't get the same problem if I first go to...
www.mysite.com/index.php and do exactly the same thing.
Is there a bug/issue with PHP and IIS in that url variables don't get passed to default templates? Is there a way to get around this problem?