<?php function sauber($text) { $text = strip_tags($text); $text = trim($text); if(strlen($text)) { return($text); } else { return(FALSE); } } ?>