Hi there all, This index.html look's like this:
<html> <body> This is a line </body> </html>
<? echo "this is the second line"; ?>
Output is: This is a line
So the php part is not done at all. Is that right? I always believed php should work in html?
Assuming you have the web server set up according to PHP's installation docs, you either need to rename index.html to index.php or tell the web server to run .html files through PHP (refer to the PHP manual for details on how to do this).
-- Stuart
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php