Hello.
I'm beginner for PHP. I'm problem with include("default.htm") is if run file it have error "Unterminate string constant"
It I'm comment line ( Layer3.innerHTML='<?php include("default.htm") ?>' ) program run complete.
I don't understand.
Thank for answer.
<!-- Code Sample default.htm-->
<H1>Test</H1>
<!-- Code Sample index.php-->
<BODY>
<script language="JavaScript">
Layer3.innerHTML="<?php include('default.htm') ?>"
</script>
<?php
print "<DIV ID='Layer3' class='clShowDetail'>";
print "</DIV>"; // Layer3
?>
</BODY>