DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

PHP Reference: Arrays

Quick reference for Arrays.

Read time: 1 min Words: 14
My Progress

PHP Reference — Arrays

Quick summary of Arrays with syntax and example.

Syntax

<?php ... ?>

Example

<?php
$name = "DrSchool";
echo "Hello " . $name;
?>