Looping Through the $_SERVER Array : Array Loop « Data Structure « PHP
- PHP
- Data Structure
- Array Loop
Looping Through the $_SERVER Array
<html>
<head>
<title>Looping through the $_SERVER array</title>
</head>
<body>
<div>
<?php
foreach ( $_SERVER as $key=>$value ) {
print "\$_SERVER[\"$key\"] == $value<br/>";
}
?>
</div>
</body>
</html>
Related examples in the same category