VN4000
Tự học lập trình, học code online
Pages
Home
Online C Compiler
Online C++ Compiler
Online Python Compiler
Friday, February 27, 2009
Return values
<html>
<body>
<?php
function add($x,$y)
{
$total = $x + $y;
return $total;
}
echo "1 + 16 = " . add(1,16);
?>
</body>
</html>
Newer Post
Older Post
Home