View Single Post
Old Oct 28th, 2005, 5:18 PM   #6
tempest
Programming Guru
 
tempest's Avatar
 
Join Date: Oct 2004
Posts: 1,041
Rep Power: 6 tempest is on a distinguished road
Send a message via ICQ to tempest Send a message via AIM to tempest Send a message via Yahoo to tempest
Use [ P H P ] [ / P H P ] tags around PHP code in the future, please...

That's a VERY bad example of functions, since it'll only be called once (and could be simplified).

[php]
<?php
function multiply($n1, $n2) {
return $n1 * $n2;
}

echo "9 * 9 = " . multiply(9, 9) . "<br>\r\n";
?>
[/php]
__________________

tempest is offline   Reply With Quote