HI,
I have this wierd situation I have never seen before... I have php 5.2.4 installed on a WinIIK3 Server with IIS6. I use $PHP_SELF in my forms to repost back to the same page.
Example
<form method='post' action='$PHP_SELF'>
However, the value of $PHP_SELF is not correct. It duplicates itself.
Example when viewing a page called "test.php"
<?
print "PHP_SELF = " . "$PHP_SELF";
?>
Will display this....
PHP_SELF = /test.php/test.php
What might be causing this to duplicate? I have double checked and I do not have $PHP_SELF listed twice in the print command.