Hi,
I’ve just set up a brand new Ubuntu server with PHP5, MySQL and APACHE2. When I access the HTML “hello world” file with PHP tags listed below, the text in within the PHP tags is not displayed.
Is there an APACHE option or something that needs to be configured? Is there some service that needs to be running for PHP to work?
Thanks,
Joe
here’s the code:
<html>
<head>
</head>
<body>
This is the first line . . .
<br />
<br />
<?php
// print another line
echo ‘. . . and this is the second line’;
?>
</body>
</html>