Function printing text on a Web Page : Definition « Functions « PHP






Function printing text on a Web Page


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








Related examples in the same category

1.Create function from string
2.Declaring a Simple Function
3.Declaring a Function
4.A Simple User Function
5.A Function Requiring Two Arguments
6.A Function to Build Query Strings
7.A function that calculates sales tax
8.Accessing a Global Variable from Within a Function
9.Build and then call a function
10.Call the function
11.Create a User Function
12.Defining functions before or after calling them
13.Creating and calling a function that accepts arguments
14.Define constant in a function
15.nesting functions
16.global key word in a function
17.Variables Defined Outside Functions Are Inaccessible from Within a Function by Default
18.Using nested functions