PHP

PHP.net - PHP Manual | PHP.net - Filesystem Functions.

PHPhulp | PHPhulp - tutorials | PHPhulp - scripts.

tizag.com - PHP Tutorial - Learn PHP.

w3schools.com - PHP Functions.


<< PHP manual.


add - uitvoer

1 + 16 = 17


add - code

<?php
function add($x,$y)
{
$total=$x+$y;
return $total;
}
echo "1 + 16 = " . add(1,16);
?>