Re: [PHP-DB] How to display HTML code?

2001-03-20 Thread Phillip Bow
Now that is cool. I wish I had noticed that one before. Would have saved a lot of odd keystrokes. -- phill ""Joe Brown"" [EMAIL PROTECTED] wrote in message 996a64$k3a$[EMAIL PROTECTED]">news:996a64$k3a$[EMAIL PROTECTED]... try: ?php echo htmlentities("A HREF=home.phpHome/A"); ? ""Osman

Re: [PHP-DB] How to display HTML code?

2001-03-19 Thread Phillip Bow
Well you don't need PHP to do it, but you can replace the greater than and less than signs with their html entities(lt; and gt;) which the browser will parse, and it will display the appropriate chars. So... ?php print "lt;font size=+2gt"; ? will print the html without parsing it. Now if only

Re: [PHP-DB] How to display HTML code?

2001-03-19 Thread Joe Brown
try: ?php echo htmlentities("A HREF=home.phpHome/A"); ? ""Osman Omar"" [EMAIL PROTECTED] wrote in message 00f901c0b0cf$c99e7da0$da604a2b@sony">news:00f901c0b0cf$c99e7da0$da604a2b@sony... Hi, Suppose I want to display HTML code eg "A HREF=home.phpHome/A" How can I do that in php? -- PHP