How To Remove The Special Characters Php
- Forums
- HTML
- 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 [2709], Last Updated: Mon Jun 24, 2024
Tilo1999
Mon Dec 21, 2009
1 Comments
454 Visits
is there a function in php i can use to remove the special characters using php from a string. i dont want my contact us form to have html characters on them when they are submitted
Example without removing HTML TAGS:
$webune = "Webune has <b>GREAT</b> hosting";;
echo strip_tags($webune );
?>
OUTPUT: Webune has GREAT hosting
EXAMPLE REMOVING ALL HTML TAGS:
$webune = "Webune has <b>GREAT</b> hosting";
echo strip_tags($webune );
?>
OUTPUT: Webune has GREAT hosting
https://www.webune.com/forums/how-to-remove-the-special-characters-php.html