Help for this page

Select Code to Download


  1. or download this
    print function(); # prints the string that function returns.
    
  2. or download this
    funtion(); # prints string since not assigned 
    
    $value = funtion(); # Does not print. $value holds the return string.