$_server['pass_translated']

#1
I am unable to get a value for the PASS_TRANSLATED element of $_SERVER. Is there a way to fix this or is it just unsupported? I'm using LSAPI PHP 4.4.8 but I also tried it with PHP 5 and it produced the same result. Thanks!
 
#3
Actually that is what I ment (sorry for the confusion),

<?php
echo $_SERVER['PATH_TRANSLATED'];
?>

and

<?php
echo $_SERVER['PATH_TRANSLATED . PATH_INFO'];
?>

produce no output.
 
Top