Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

PHP

Description

PHP: Hypertext Preprocessor (PHP) is a language for creating web content.

Examples

1 · string

<?

$string = "PHP: Hypertext Preprocessor";

echo $string;

?>
PHP: Hypertext Preprocessor

2 · array

<?

$array =
[
    "PHP",
    "Hypertext",
    "Preprocessor"
];

echo "$array[0]: $array[1] $array[2]";

?>
PHP: Hypertext Preprocessor
HomeMenu