Don Alexander Eckford's Various Single Function Examples
Demonstrates how variables may be passed to, and returned from, functions.
- Function One
- Function Two
- Function Three
- Function Four
- Function Five
- Function Six
- Function Seven
- Function Eight
Demonstrates how variables may be passed to, and returned from, functions.
<?php
include('includes/header.php');
// code
error_reporting(E_ALL); // set error reporting to all
?>
<h1>Don Alexander Eckford'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');
?>