list: Print all server variables : list « Development « PHP






list: Print all server variables

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

           
       








Related examples in the same category

1.list and explode