php ufnctions code example
Example: php ufnctions
<?php
function writeMsg() {
echo "Hello world!";
}
writeMsg(); //call the function
?>
<?php
function writeMsg() {
echo "Hello world!";
}
writeMsg(); //call the function
?>