Anyone know how to get the /php/php.exe part out of the links on my server? eg. http://localhost/foo.php has a link to $PHP_SELF and passes a var \\\\"$bar\\\\"
when you click the link it becomes
http://localhost/php/php.exe/foo.php?bar=foobar
when i just want http://localhost/foo.php?bar=foobar
try adding $PHP_SELF="name_of_page.php"; at the head of the offending page(s) or stop using PHP_SELF
$PHP_SELF=basename($PHP_SELF);
========================= http://www.tood.net http://www.TTL.co.kr
Korea - PHP newbie