This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

PHP Functions

Create User Defined Function

Hello world!

<?php
// create function writeMsg()
function writeMsg() {
  echo "Hello world!";
}

// call the function
writeMsg();
?>