Functions Php


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