Quantcast
Channel: PHP Freaks: PHP Help
Viewing all articles
Browse latest Browse all 13200

Requesting little help with PHP str_replace

$
0
0
Hi guys,
I am still stuck please help me someone. The script works fine using the echo function but I cant seem to get it to work using input, 
textarea fields. Also I cant seem to get it to alert user that there is a badword in their input. Thank you.
 
<?php
function BadWords($text){
    //badwords to replace
    $allBadwords = array('badword1','dbad2','bad3','bad4','bad5');
    //replaced with *** 
    return str_replace($allBadwords,'***',$text);
}
echo BadWords("i like to eat lots of applepie, but my favourite thing to do is to is simply to chew on raw carrot");
?>
 
<input type="text" name="text"> How can i use it here
<textarea> <textarea> How can i use it here
<input type="submit" name="submit"> 
 
And finally how can I sue it here <p>A very long sentence here</p>

Viewing all articles
Browse latest Browse all 13200

Trending Articles