Learning PHP and MySQL

Example 05-07 A sample include file called add.php

<?php
function  add(  $x,  $y  )
{
  
return  $x  +  $y;
}
?>

Posted by on 08/03 at 08:20 AM

Next entry: Example 05-08 Using the include function

Previous entry: Example 05-05 Creating a capitalize function with a default parameter $each

<< Back to main