Cleaning Up a String with trim(), Itrim(), and strip_tags()
$text = "\t\t\tlots of room"; $text = trim( $text ); print $text; ?> == keep white space at the beginning of a string but remove it from the end. $text = "\t\t\tlots of room "; $text = rtrim( $text ); print $text; ?>