Replacing < with &lt; and > with &gt;

This is a discussion on "Replacing < with &lt; and > with &gt;" within the PHP Forum section. This forum, and the thread "Replacing < with &lt; and > with &gt; are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Mar 29th, 2008, 09:04
Jack Franklin's Avatar
Resources Administrator

SuperMember
Join Date: May 2007
Location: Cornwall, England
Posts: 1,268
Blog Entries: 7
Thanks: 10
Thanked 4 Times in 4 Posts
Replacing < with &lt; and > with &gt;

Hi all,

When a user adds a comment to the blog, their entry is put into the database using '<' and '>' so when the comment is displayed, it actually displays the code properly, not the code itself. How can I replace < and > with &lt; and &gt;? I know you use str_replace but you can only replace one thing in that right? So what do I do?
Last Blog Entry: My Latest Project - Grilling Gurus... (Jun 11th, 2008)
Reply With Quote

  #2 (permalink)  
Old Mar 29th, 2008, 10:04
Reputable Member
Join Date: Nov 2007
Location: India
Posts: 150
Blog Entries: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Replacing < with &lt; and > with &gt;

use htmlentities()
PHP: Select all

<?php
$str 
"A 'quote' is <b>bold</b>";

// Outputs: A 'quote' is &lt;b&gt;bold&lt;/b&gt;
echo htmlentities($str);
?>
http://in2.php.net/htmlentities
Last Blog Entry: Cross browser nuisance (Feb 11th, 2008)
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
replacing images in adobe cs3 pro meeuw Flash & Multimedia Forum 6 Feb 29th, 2008 16:27
php replacing £ with &Acirc;&pound; error :s uqwebdesign PHP Forum 6 Jul 6th, 2007 09:42
replacing tables c00rdb Web Page Design 0 Feb 20th, 2007 20:30


All times are GMT. The time now is 12:05.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43