Functions
Functions group reusable logic behind a name you can call anywhere.
function greet($name) { return "Hello, $name"; }Try it Yourself
Run this PHP example in your local environment or course sandbox.
PHP Tutorial
Functions group reusable logic behind a name you can call anywhere.
function greet($name) { return "Hello, $name"; }