First page
Back
Continue
Last page
Overview
Graphics
Arrays
<?php
$test_array[0] = “Hello”;
$test_arrays[1] = “ there - “;
$test_array[3] = “How are you?”;
echo $test_array[0] . $test_array[1] . $test_array[2];
?>
Notes: