I'm thinking of starting a project, similar to ZedtuGEAR, which looks very nice might I add. I was just thinking about includes and echoing html taking forever, is it possible to do this
if the html file is likePHP Code:<?php
echo include(htmlfile.html);
?>
You know.. the general html file. or would it have to beHTML Code:<html>
<head>
</head>
<body>
</body>
</html>
??PHP Code:<?php
echo "<html>"
echo "<head>" //etc.
?>

