php built in functions with parameters code example
Example: how to define function in php
<?php
function writeMsg() {
echo "Hello world!";
}
writeMsg(); //call the function
?>
<?php
function writeMsg() {
echo "Hello world!";
}
writeMsg(); //call the function
?>