function Text2Html( $txt ) |
{ |
$txt = str_replace ( " " , " " , $txt ); |
$txt = str_replace ( "<" , "<" , $txt ); |
$txt = str_replace ( ">" , ">" , $txt ); |
$txt = preg_replace( "/[\r\n]{1,}/isU" , "<br/>\r\n" , $txt ); |
return $txt ; |
} |