Code Library
Home Submit Free Hosting Link To Us Contacts

PHP Create an array

PHP Create an array PHP PHP Create an array Download (.zip)



<html>
<body>

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

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

</body>
</html>






Tatet