Follow on Facebook

header ads

functions in php

functions in php


<!DOCTYPE html>
<html>
<head>
<title>functions in php</title>
</head>
<body>
<?php
function num()
{
return 2;
}
$v = num() + 1;
echo $v;
?>
</body>
</html>



Post a Comment

0 Comments