listBoards() functions

This commit is contained in:
Savetheinternet 2010-12-02 18:15:50 +11:00
parent c9adbdda4c
commit e16a05cda7

View File

@ -56,6 +56,18 @@
} else return false;
}
function listBoards() {
global $sql;
sql_open();
$boards_res = mysql_query("SELECT * FROM `boards`", $sql) or error(mysql_error($sql));
$boards = Array();
while($_board = mysql_fetch_array($boards_res)) {
$boards[] = $_board;
}
return $boards;
}
function threadExists($id) {
global $sql;
$thread_res = mysql_query(sprintf(