Tedd's Various Single Function Examples

Demonstrates how variables may be passed to, and returned from, functions.

  1. Function One
  2. Function Two
  3. Function Three
  4. Function Four
  5. Function Five
  6. Function Six
  7. Function Seven
  8. Function Eight
 

CODE FOLLOWS

<?php

    
include('includes/header.php');    

    
// code
    
error_reporting(E_ALL);    // set error reporting to all
?>


<h1>Tedd's Various Single Function  Examples</h1>
<p>Demonstrates how variables may be passed to, and returned from, functions.</p>


<ol>
<li><a href="func-1.php">Function One<a/></li>
<li><a href="func-2.php">Function Two<a/></li>
<li><a href="func-3.php">Function Three<a/></li>
<li><a href="func-4.php">Function Four<a/></li>
<li><a href="func-5.php">Function Five<a/></li>
<li><a href="func-6.php">Function Six<a/></li>
<li><a href="func-7.php">Function Seven<a/></li>
<li><a href="func-8.php">Function Eight<a/></li>
</ol>

<?php
                            
    
include('includes/footer.php');    
?>