PHP Create an array

Create an array

<html>
<body>

<?php
$p[0] = "John";
$p[1] = "George";
$p[2] = "Brian";

echo $p[1] . " & " . $p[2] . " are ". $p[0] . "'s friends";
?> 

</body>
</html>