Hi,
I installed a simple LAMP (php5) with Gentoo.
I am just testing it now. I wrote two simple "Hello" files. One is called index.php and one is called index.html.
The simple index.php is working well.
But I get problems with php in Html pages.
I wrote this small code:
<head>
<title> </title>
</head>
<body>
<?php
print ("hello! <br><br>");
phpinfo();
?>
</body>
</html>
The screen result is:
Hello
"); phpinfo(); ?>
So it seems there is a problem to get PHP working in my html pages.
Does anybody know how to solve this problem ?
Thanks.
