mirror of
https://git.code.sf.net/p/quake/website
synced 2025-03-13 21:21:59 +00:00
grr...
This commit is contained in:
parent
0ad9e63a6a
commit
a0a9a867cd
2 changed files with 23 additions and 2 deletions
24
index.php
24
index.php
|
@ -10,7 +10,29 @@
|
|||
tableBoxHeader( 'black', tableHeadColor );
|
||||
tableTitle( 'Latest News', 1, tableHeadColor );
|
||||
require("news_funcs.php");
|
||||
latestNews('1 month');
|
||||
$conn = @mysql_pconnect (sqlHost, sqlUser, sqlPass);
|
||||
if ($conn) {
|
||||
$query = 'SELECT n_date, n_user, n_news FROM news_main' .
|
||||
" WHERE n_date > DATE_SUB(NOW(), INTERVAL $length)" .
|
||||
' ORDER BY n_date DESC';
|
||||
$result = @mysql_db_query (sqlDB, $query, $conn);
|
||||
if ($result) {
|
||||
$numRows = @mysql_num_rows ($result);
|
||||
if ($numRows) {
|
||||
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));
|
||||
}
|
||||
} else {
|
||||
newsItem ('now', 'Web Server', '<P>No current news!');
|
||||
}
|
||||
} else {
|
||||
newsItem ('now', 'Web Server', '<P>No news in database!');
|
||||
}
|
||||
mysql_close ($conn);
|
||||
} else {
|
||||
newsItem ('Now', 'Web Server', '<P>Error: Could not connect to SQL server to fetch news. Please notify the server administrator.');
|
||||
}
|
||||
tableBoxFooter();
|
||||
?></TD>
|
||||
</TR>
|
||||
|
|
|
@ -101,7 +101,6 @@
|
|||
need('date sql');
|
||||
|
||||
$conn = @mysql_pconnect (sqlHost, sqlUser, sqlPass);
|
||||
echo sqlHost . sqlUser . $conn;
|
||||
if ($conn) {
|
||||
$query = 'SELECT n_date, n_user, n_news FROM news_main' .
|
||||
" WHERE n_date > DATE_SUB(NOW(), INTERVAL $length)" .
|
||||
|
|
Loading…
Reference in a new issue