Data Type Php



Looping through the $_SERVER array



foreach ( $_SERVER as $key=>$value ) {
   print "\$_SERVER[\"$key\"] == $value
";
}
?>