X-Git-Url: http://git.treefish.org/banana.git/blobdiff_plain/4678f209fb04682d0981cadb566d63f5726f9e09..8db41c98817b1b48532dc3cebf4bea166e42bb70:/include/prefs.inc diff --git a/include/prefs.inc b/include/prefs.inc new file mode 100644 index 0000000..58aac3e --- /dev/null +++ b/include/prefs.inc @@ -0,0 +1,9 @@ +query("SELECT key, value FROM prefs"); + while ($row = $result->fetch(PDO::FETCH_ASSOC)) { + $PREFS[$row['key']] = $row['value']; + } + +?>