025 - functionsone.
two.
three.
two.
one.
<?php
// 025 - functions
echo "</br><span class='myheading'> 025 - functions</span></br>";
function hello(){
echo "one.<br>";
}
function yahoo(){
echo "two.<br>";
}
hello();
yahoo();
echo "three.<br>";
yahoo();
hello();
?>