Functions Php


  
   Printing text on a Web Page 
  
  
    function textonweb ($content, $fontsize) {
     echo "$content";
  }
  textonweb ("A 
", 7);
  textonweb ("AA. 
", 3);
  textonweb ("AAA. 
", 3);
  textonweb ("AAAA! 
", 3);
  ?>