non ho ben capito cosa vuoi ricavare, ma fai un ciclo così e vedi i valori che ti interessano:

Codice PHP:
print '<pre>';
foreach (
$_SERVER as $key => $value){
    print 
$key.' -> '.$value.'
'
;
}
print 
'</pre>'