Answers for "php select with global variable"

PHP
3

php global variable function

<?php
  $myVariable = "a";
  function changeVar($newVar) {
    global $myVariable
    $myVariable = "b";
  }
  echo $myVariable; // Should echo b
?>
Posted by: Guest on May-16-2021
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