Here is my exact code.
<?php
echo "<! <";
?>
And this is the returned string.
<! >
Why is the last character changing?
|
I have created an identical script as that detailed by the OP. In Firefox v3.6.3, the browser displays In Google Chrome v4.1, the browser display is blank, but the source shows In Internet Explorer 8, the browser displays In Opera v10.53, the browser displays Not sure which browser you are having difficulties in, or, for that matter, why you would be wanting to display these characters in a browser window. If you are wanting these characters to be displayed, literally, then using something like |
|||||||
|
|
if you give it a "Content-Type: text/plain" header, chrome should render it normally. it's possible you are either sending a "text/html" header or not sending a Content-Type header at all, so the browser must guess what kind of content it is. |
|||
|
|
<! >, but i don't think this has anything to do with PHP. My guess is that chrome is trying to fix invalid markup or something. – rebus May 18 '10 at 3:09