Function One

This is inside Function one()


CODE FOLLOWS


<?php

    
include('includes/header1.php');

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

    
echo('<h1>Function One</h1>');

    
//============= functions ===============
    // function one ---------
    // simple function that echo's the program flow is inside the function

    
function one()
    {
        echo(
'<p>This is inside Function one() </p>');
    }

    
one();    // <-- this is how function one() is called


    
include('includes/footer1.php');
?>