config.php ignored now, fix weirdo DBO issue
[miniqdb.git] / header.php
blobe16e67d82c66de68567cece66df82e017808f9d6
1 <?php
3 /* miniqdb - A minimalistic quote database
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. */
20 require 'config.php';
22 function stripslashes_if_gpc_magic_quotes($string) {
23 if(get_magic_quotes_gpc()) {
24 return stripslashes($string);
25 } else {
26 return $string;
30 $totalq = $db->query("SELECT COUNT(*) FROM miniqdb");
31 $totalr = $totalq->fetchAll();
32 $numq = $totalr[0][0];
34 echo '<?xml version="1.0" encoding="UTF-8"?>';
35 echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">';
36 echo "<html>";
37 echo <<<EOF
38 <head>
39 <title>$qdbname</title>
40 <style type="text/css">
41 body {
42 font-size: 14px;
43 font-family: sans-serif;
45 h1 {
46 display: inline;
48 span#user {
49 float: right;
51 h1 a {
52 color: black;
53 text-decoration: none;
55 form[action="quote.php"] {
56 display: inline;
57 padding-left: 10px;
59 pre {
60 font-family: monospace;
62 div.quote {
63 margin-bottom: 10px;
65 div.quote pre:first-line {
66 color: #666666;
67 font-size: 12px;
68 border-bottom: 1px solid #666666;
70 </style>
71 </head>
72 <body>
73 <h1><a href="index.php">$qdbname</a></h1>
74 <form action="quote.php" method="get">
75 <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>
76 </form>
77 EOF;
79 $footer = "<p><small>powered by <a href=\"http://miniqdb.googlecode.com/\">miniqdb</a></body></html>";