Hi, I have installed RedHat 8, Apache, PHP and mySQL, and I am having a very strange problem...
PHP works flawlessly, whenever I use a <?PHP tag, but when I try to use <SCRIPT LANGUAGE="PHP"> nothing shows up.
I made a simple script just like this:
<?PHP
echo 'Short tags<br>';
?>
<SCRIPT LANGUAGE="php">
echo 'Long tags<br>';
</SCRIPT>
And the output is: Short tags
If I look in the source code that the Internet Explorer shows, I see this
Short tags<br>
<SCRIPT LANGUAGE="php">
...
Can someone help me with this?
Thanks !