[PHP] Re: [Q] PHP code embedded in html files - What happens?

2004-03-14 Thread Jeffrey Lee
Hi Michael, In my understanding, web server will involve php interpreter when the file extension is specify. Say, if a web server is configured to involve php interpreter when the extension is php, then when the request file is php, the php file's content will be interpreted. So, I think your

Re: [PHP] Re: [Q] PHP code embedded in html files - What happens?

2004-03-14 Thread EastLothianDirectory
Try naming your file temp.php instead of temp.html -- START CODE -- ? $message = Hello World; ? html body ? echo $message; ? /body html END CODE - Regards, Chris --- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Re: [Q] PHP code embedded in html files - What happens?

2004-03-14 Thread EastLothianDirectory
I missed out the 'slash' at the /html Original Message From: EastLothianDirectory Date: Mon 3/15/04 2:35 To: [EMAIL PROTECTED] Subject:Re: [PHP] Re: [Q] PHP code embedded in html files - What happens? Try naming your file temp.php instead