Search This Blog

Friday, August 14, 2009

PHP, include_once

//will throw an warnning and continue, if something is wrong
include_once "swap_function.php";

$a=1;
$b=2;
swap($a,$b);
print "$a\n";
print "$b\n";
?>

No comments: