Please answer this simple SPAM challenge: seven plus zero? (Example: nine)
This small mb_trim function works for me. <?php function mb_trim( $string ) { $string = preg_replace( "/(^\s+)|(\s+$)/us", "", $string ); return $string; } ?>
<< Back to user notes page