3 /* miniqdb - A simple quote database written in PHP
4 Copyright (C) 2008 Ian Weller <ianweller@gmail.com>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
22 function stripslashes_if_gpc_magic_quotes($string) {
23 if(get_magic_quotes_gpc()) {
24 return stripslashes($string);
30 $totalq = $db->query("SELECT COUNT(*) FROM miniqdb");
31 $numq = $totalq->fetchColumn(0);
33 echo '<?xml version="1.0" encoding="UTF-8"?>';
34 echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">';
38 <title>$qdbname</title>
39 <style type="text/css">
42 font-family: sans-serif;
52 text-decoration: none;
54 form[action="quote.php"] {
59 font-family: monospace;
64 div.quote pre:first-line {
67 border-bottom: 1px solid #666666;
72 <h1><a href="index.php">$qdbname</a></h1>
73 <form action="quote.php" method="get">
74 <span>$numq quotes - <a href="all.php">all</a> - <a href="index.php">random</a> - <a href="latest.php">latest 10</a> - <a href="add.php">add</a> - #<input type="text" name="id" size="4" /></span>
78 $footer = "<p><small>powered by <a href=\"http://miniqdb.googlecode.com/\">miniqdb</a></body></html>";