Function Five
This is inside Function five() : a = 15
15This is inside Function five() : a = 15
15
<?php
include('includes/header1.php');
// code
error_reporting(E_ALL); // set error reporting to all
echo('<h1>Function Five</h1>');
//============= functions ===============
// function five ---------
// a function that receives a value, adds 10 to it, echo's it, AND returns the value to the
// main program
function five($b)
{
$b = $b + 10;
echo("<p>This is inside Function five() : a = $b</p>");
return $b; // note the return
}
$a = 5;
$a = five($a); // call to function five --- NOTE the return value
echo($a);
include('includes/footer1.php');
?>