Answers for "echo all php global variables"

PHP
0

echo all php global variables

<?php
  // Returns all server global variables
  foreach ($_SERVER as $var => $value) {
    echo "$var => $value <br>";
  }
?>
Posted by: Guest on August-20-2021

Browse Popular Code Answers by Language