hi, im doing this brilliant tut on php.
but, i was wondering is the below code right? If it is then why isnt anything appearing apart from "LOL123"
<html>
<head>
<title>My First PHP page</title>
</head>
<body>
<H4>lol123</H4>
<?php
$firstarray = array("Hello","world");
?>
</body>
</html>