Here is the script for what it's worth.
...

<body bgcolor="#FFFFFF" text="#000000">
<h2>IS IT WORKING?</h2>
<p>&lt;?php
 phpinfo();
?&gt; </p>
</body>
</html>

and the result is
IS IT WORKING?

<?php phpinfo(); ?>


are your trying to fool the list?


whate else do you expect than > when you write &gt; ??

would ASP work if your write "&lt;% [ASP-CODE] %&gt;" ??

i think not,

in short just write < and > rather then &lt; and &gt;

<html>
<body bgcolor="#FFFFFF" text="#000000">
<h2>IS IT WORKING?</h2>
<p><?php
 phpinfo();
?> </p>
</body>
</html>


-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to