PHP

Getting Started String Date If Else Loop Array Functions Session Files Super Global Variables Debugging MySQL MySQL Read Data JSON Markdown
O O

Weather Controls

Time Of Day
Rain
Wind Speed
Wind Direction
Clouds

PHP : Functions

2017-01-01

Functions

not case-sensitive

function familyName($fname) {
    echo "$fname Powers.";
}

function sum($x, $y) {
    $z = $x + $y;
    return $z;
}