Showing posts with label PHP Call outside variables in function. Show all posts
Showing posts with label PHP Call outside variables in function. Show all posts

Monday, 2 February 2015

global statement in php

<?php
  $ilike = "Rock";
  function 
music (){
      global 
$ilike;
      echo 
"I love listening to $ilike music!", "\n";
  }
  
music ();

?>