Declaring a Function : Definition « Functions « PHP
- PHP
- Functions
- Definition
Declaring a Function
<html>
<head>
<title>Declaring a Function</title>
</head>
<body>
<?php
function bighello(){
print "<h1>HELLO!</h1>";
}
bighello();
?>
</body>
</html>
Related examples in the same category