i am trying to echo out all of the $env and $server vars, and I can... but I want the variable name infront of the value, here is my current code:
<?php
echo '<table border="1">';
foreach($_ENV as $bob){
echo "<tr><td>".$bob."</td></tr>";
}
echo "<tr><td> <hr></td></tr>";
foreach($_SERVER as $bob){
echo "<tr><td>".$bob."</td></tr>";
}
echo "</table>";
?>
any idea on how to make the name come before the variable value?
n/m, I figured it out.