I've got this:
But when I run it, only "I live next to" shows up... Why?
Regards,
"DLA"
PHP Code:
<?php
$names = array("Abraham", "Beth", "Christina", "David", "Ellen", "Fergus", "Goliath", "Hamish")
?>
<html>
<body>
<p>I live next to
<?php
echo $names[0] . " ," $names[1] . " ," $names[2] . " ," $names[3] . " ," $names[4] . " ," $names[5] . " ," $names[6] . " and " . $names[7] . ".";
?>
</p>
</body>
</html>
But when I run it, only "I live next to" shows up... Why?
Regards,
"DLA"
Comment