Tedd'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>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');
?>