PHP Tutorial
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
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment