Function Four
This is inside Function four() : a = 14
This is inside Function four() : a = 14
<?php
include('includes/header1.php');
// code
error_reporting(E_ALL); // set error reporting to all
echo('<h1>Function Four</h1>');
//============= functions ===============
// function four ---------
// simple function that receives a value, adds 10 to it, and then echo's that value inside
// the function
function four($a)
{
$a = $a + 10;
echo("<p>This is inside Function four() : a = $a</p>");
}
$a = 4;
four($a); //<-- this is how function four is called
include('includes/footer1.php');
?>