Language Basics Php



Looping through the $GLOBALS array


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