list: Print all server variables
<?php while (list($var,$value) = each ($_SERVER)) { echo "$var => $value <br />"; } ?>