<html>
<body bgcolor=lightyellow>
<h2>Display Environment Variables within the $_SERVER array</h2>
<br><br>
<?php
ksort($_SERVER); #sort by key ascending
print("<table border=1>");
foreach($_SERVER as $key => $value)
print "<tr><td><b>$key <td> $value ";
print("</table>");
?>
<?php include "../include.php"; ?> <!-- hyperlink to see the code -->
</body>
</html>