[php]
<?php include 'header.php'; $threadid = $_GET['tid']; if($loggedIn) { echo "New Reply
"; $reply1 = $_POST['reply_content']; $reply = $_POST['submit']; $reply1 = strip_tags($reply1,''); if($reply) { if($reply1 == '') { echo "Reply should not be empty"; } if(strlen($reply)<5) { echo "Reply is too short (Min 5 characters)"; } else { $db->query("INSERT INTO replies (threadID, reply, posted_by) VALUES ('$threadid', '$reply1', '$myC->Username')"); } } // end if reply } else { echo "Not logged in"; }[/php] All tags except , and The problem is that if the user uses another tag (for example