How To Remove The Special Characters Php
RegisterLogin
How To Remove The Special Characters Php
Post Description: 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
Tags: How, To, Remove, The, Special, Characters, Php
This Post Was Posted On Dec 21, 2009 By Tilo1999 #2950
Post Description: 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
Tags: How, To, Remove, The, Special, Characters, Php
This Post Was Posted On Dec 21, 2009 By Tilo1999 #2950
How To Remove The Special Characters Php by Tilo1999
Leave Your Comments
Related Pages: [Add Your Website]
Post New Topic
webune
#3078 1
you can use this code as example:
Example without removing HTML TAGS:
OUTPUT: Webune has GREAT hosting
EXAMPLE REMOVING ALL HTML TAGS:
OUTPUT: Webune has GREAT hosting
Example without removing HTML TAGS:
<?php
$webune = "Webune has <b>GREAT</b> hosting";;
echo strip_tags($webune );
?>
$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 );
?>
$webune = "Webune has <b>GREAT</b> hosting";
echo strip_tags($webune );
?>
OUTPUT: Webune has GREAT hosting
Dec 21, 2009 Reply Report abuse
©2011 Webune Forums - Sun Dec 18, 2011 6:59 pm
Powered by: Webune Forums V3
Powered by: Webune Forums V3