How To Remove The Special Characters Php
Removing Html This Pages Shows You If There Is A Is There A Function In Php I Can Use To Remove The Special Characters Using Php From A String
How, To, Remove, The, Special, Characters, Php


Mon Dec 21, 2009 7:59 pm - How To Remove The Special Characters Php
#2950
How To Remove The Special Characters Php
author: Tilo1999
Leave Your Comments
name
comments
Share
Share this post by copy and paste this URL and put it on your forums or use it on your profile like myspace, friendster, Facebook, Twitter or others and add in with your comments.
URL Link: ask
Use this HTML code to embed this topic, just copy the code from the "Embed" box. Once you've copied the code, just paste it into your website or blog to embed it.
Embed: ask
BBCODE is use on forums. You can put this code on all your BBCODE enabled forums like PhpBB, vBulletin® and others. Just Copy and Paste this code on with Posts and Replies on your forums
BBCODE: ask
| More
Mon Dec 21, 2009 8:04 pm - Re: How To Remove The Special Characters Php
#3078
webune
you can use this code as example:

Example without removing HTML TAGS:
<?php
$webune = "Webune has <b>GREAT</b> hosting";;
echo strip_tags($webune );
?>

OUTPUT: Webune has GREAT hosting

EXAMPLE REMOVING ALL HTML TAGS:
<?php
$webune = "Webune has <b>GREAT</b> hosting";
echo strip_tags($webune );
?>

OUTPUT: Webune has GREAT hosting