Dave wrote:
Can I add php code directly to an html document or is it
possible to have an include on an html page the read a php
document? If so how would I do it?
Thanks
Dave
Dave,
Why not do it the other way around? You can embed the HTML in a
PHP file. Just build your PHP program and then add the
following:
echo (" <HTML file goes here> ");
The only problem I have found doing this is that you must either
escape any " characters or limit yourself to ' inside the echo.
HTH
--
Jerry Gitomer