Function with default parameters : Parameters : Functions PHP Source Code


PHP Source Code » Functions » Parameters »

 

Function with default parameters



  <HTML>
  <HEAD>
  <TITLE> Printing text on a Web Page</TITLE>
  </HEAD>
  <BODY>
  <?php
  function textonweb ($content, $fontsize=3){
     echo "<FONT SIZE=$fontsize>$content</FONT>";
  }
  textonweb ("A <BR>"7);
  textonweb ("AA.<BR>");
  textonweb ("AAA. <BR>");
  textonweb ("AAAA! <BR>");
  ?>
  </BODY>
  </HTML>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Functions
» Parameters