function makeClickableLinks($s) {
return preg_replace('@(https?://([-\w\.]+[-\w])+(:\d+)?(/([\w/_\.#-]*(\?\S+)?[^\.\s])?)?)@', '
$1', $s);
}
$path = $_SERVER['DOCUMENT_ROOT'];
$motd = file_get_contents("$path/motd.txt");
$motd = htmlentities($motd);
$motd = makeClickableLinks($motd);
$motd = nl2br($motd);
?>