Sunday, April 29, 2012

PHP Return Values of Function Tutorial


Functions
Example
<?php
            function add($a, $b)
             {
               $total=$a+$b;
              return $total;
           }
         echo add(7,7);
?>
Output
14 

No comments:

Post a Comment