functions in php

functions in php
=====================================================================================
function add()
{
$a=10;
$b=15;
$c=$a+$b;
echo $c;
}
add();
?>
-------------------------------------------------------------------------------------

function add($a,$b)
{
$c=$a+$b;
return $c;
}
$i=add(10,25);
echo $i;

?>
=====================================================================================

No comments: