done with internal functions, return_data() still not done
[miniqdb.git] / header.php
blob5aab5ab5adae7310f102ec5cd64bf91ada1a9bdd
1 <?php
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. */
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 $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">';
35 echo "<html>";
36 echo <<<EOF
37 <head>
38 <title>$qdbname</title>
39 <style type="text/css">
40 body {
41 font-size: 14px;
42 font-family: sans-serif;
44 h1 {
45 display: inline;
47 span#user {
48 float: right;
50 h1 a {
51 color: black;
52 text-decoration: none;
54 form[action="quote.php"] {
55 display: inline;
56 padding-left: 10px;
58 pre {
59 font-family: monospace;
61 div.quote {
62 margin-bottom: 10px;
64 div.quote pre:first-line {
65 color: #666666;
66 font-size: 12px;
67 border-bottom: 1px solid #666666;
69 </style>
70 </head>
71 <body>
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>
75 </form>
76 EOF;
78 $footer = "<p><small>powered by <a href=\"http://miniqdb.googlecode.com/\">miniqdb</a></body></html>";