Hi all,

I'm working on a small solution and want to do some configuration during the
initialising process.

The solution is aimed at non tecchies in universities and the idea is that
the system does some of the environment stuff for them.

This is the first time I've done any of this stuff so I might be off-target.
Any suggested imptovements?

George

<?php

if(in_array("Windows_NT",$HTTP_ENV_VARS)){

$pdf_path="C:\\Pdf\\";

if(substr($SERVER_SOFTWARE,0,6)=="Apache"){

$webroot=$DOCUMENT_ROOT;

}elseif(substr($SERVER_SOFTWARE,0,13)=="Microsoft-IIS"){

$webroot=str_replace(str_replace("/","",$PATH_INFO),"",$PATH_TRANSLATED);

}

}elseif(in_array("linux_gnu",$HTTP_ENV_VARS)){

$pdf_path="/var/pdf/";

if(substr($SERVER_SOFTWARE,0,6)=="Apache")

$webroot=$DOCUMENT_ROOT;

}

?>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to