my site is written in php and heres the code I have got
//good words
        $body = implode(" ", $body_array);
        $niceWords = array("nice", "amazing", "fantastic", "great");
        $body = preg_replace('/\b('.implode('|',$niceWords).')\b/','You have used the speical ',$body);
        //Start the Points
        $_SESSION['points'];
        $_SESSION['points']++;
        echo $_SESSION['points'];
