Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using some basic script to strip HTML tags. Here is the code for that I am using. How can I get it to do it to a text field named ['msge'] when it's posted?

function transform_HTML($string, $len = null) {     
    $string == ($_POST['msge']);
    $string = trim($string);
    $string = utf8_decode($string);
    $string = htmlentities($string, ENT_NOQUOTES);
    $string = str_replace("#", "#", $string);
    $string = str_replace("%", "%", $string);
    $len = intval($len);
    if ($len > 0) {$string = substr($string, 0,$len);}
    return $string;
}
share|improve this question
$string == ($_POST['msge']); makes no sense. – ThiefMaster Jul 21 '12 at 11:14
Ohh, whoops. That wasnt supposed to be there, lol. – micker Jul 21 '12 at 11:15

1 Answer

I could get your point right. transform_HTML can be simply replaced with strip_tags

$string = strip_tags($_POST['msge']);

will do what you want

share|improve this answer
Exelent, thank you rab! It works wonderfully :) – micker Jul 21 '12 at 11:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.