Saturday 29 June 2013

addition in php using functions

<html>
<head>
<title></title>
</head>
<body>
<?php
function add($i=2,$j=3)
{
echo $i+$j;
}
add();
?>
</body>
</html>

No comments:

Post a Comment