$Text = "Title: Hello world!\n" ;
$Text .= "Author: Jonas\n" ;
$Text .= "This is a example message!\n\n" ;
$Text .= "Title: Entry 2\n" ;
$Text .= "Author: Sonja\n" ;
$Text .= "Hello world, what's up!\n" ;
function RewriteText( $Match ){
$EntireSection = $Match [0];
$Key = $Match [1];
$Value = $Match [2];
return '<b>' . $Key . '</b>: ' . $Value ;
}
|