Adding parameters in PHP Function
Adding parameters in PHP Function
Our first function writedate() is a very simple function. It only writes a static string.
To add more functionality to a function, we can add parameters. A parameter is just like a variable.
You may have noticed the parentheses after the function name, like: writedate(). The parameters are specified inside the [...]