/ Published in: PHP
Prints all $_Server variables to table
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
print"<table border=1>"; foreach ($_SERVER as $key=>$val ){ if ($key <> "HTTP_COOKIE" && $key <> "PATH"){ echo "<tr><td>".$key."</td><td>" .$val."</tr>"; } } print"</table>";