Learning PHP and MySQL

Example 05-09 Using include_once to include a file

<?php
include_once('add.php');
include_once(
'add.php');
echo  
add(2,  2);
?>

Posted by on 08/18 at 10:00 AM

Next entry: Example 07-01 Creating the books and authors tables

Previous entry: Example 03-06 Reassigning a variable

<< Back to main