'.
'
';
tableBoxHeader( 'black', tableHeadColor );
tableTitle( "Search Results", 1, tableHeadColor );
for ($i = 0 ; $i < $numRows ; $i++) {
list ($n_date, $n_user, $n_news) = mysql_fetch_row ($result);
newsItem (dateFromSQLDateTime ($n_date), $n_user, StripSlashes($n_news));
}
tableBoxFooter();
echo ' |
';
} else {
echo 'No news found matching "' . $string . '"';
}
} else {
echo '
No news found matching "' . $string . '"\n';
}
mysql_close ($conn);
} else {
echo '
SQL error, please contact the webmaster.';
}
?>