I was under the impression that the single quote ' did not interpret
the content.
prog 1
<HTML>
<BODY>
<?PHP
echo '"a"';
?>
</BODY>
</HTML>
this gives as expected "a"
prog 2
<HTML>
<BODY>
<?PHP
echo '"<a"';
?>
</BODY>
</HTML>
I want "<a" but
it gives "<a>
So without the closing " but with a closing >
Strange. What am I doing wrong?
Greeting
Kees
the content.
prog 1
<HTML>
<BODY>
<?PHP
echo '"a"';
?>
</BODY>
</HTML>
this gives as expected "a"
prog 2
<HTML>
<BODY>
<?PHP
echo '"<a"';
?>
</BODY>
</HTML>
I want "<a" but
it gives "<a>
So without the closing " but with a closing >
Strange. What am I doing wrong?
Greeting
Kees
Comment