Browse Source

listBoards() functions

pull/40/head
Savetheinternet 14 years ago
parent
commit
e16a05cda7
  1. 12
      inc/functions.php

12
inc/functions.php

@ -56,6 +56,18 @@
} else return false; } 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) { function threadExists($id) {
global $sql; global $sql;
$thread_res = mysql_query(sprintf( $thread_res = mysql_query(sprintf(

Loading…
Cancel
Save