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
<BODY>
<script language="JavaScript">
function opener( sFileName, text )
{
if (text=="Diagram")
Layer3.innerHTML="<IMG src='/images/job/progressive.png' ></IMG>";
else
{
Layer3.innerHTML='<?php include("default.htm") ?>';
}
}
</script>
<?php
print "<DIV ID='Layer3' class='clShowDetail'>";
print "</DIV>"; // Layer3
?>
</BODY>