(no commit message)
[mailer.git] / 0.2.1 / view.php
1 <?php\r
2 /************************************************************************\r
3  * MXChange v0.2.1                                    Start: 01/02/2004 *\r
4  * ===============                              Last change: 09/04/2004 *\r
5  *                                                                      *\r
6  * -------------------------------------------------------------------- *\r
7  * File              : view.php                                         *\r
8  * -------------------------------------------------------------------- *\r
9  * Short description : View a banner and count his views                *\r
10  * -------------------------------------------------------------------- *\r
11  * Kurzbeschreibung  : Banner anzeigen und Views zaehlen                *\r
12  * -------------------------------------------------------------------- *\r
13  *                                                                      *\r
14  * -------------------------------------------------------------------- *\r
15  * Copyright (c) 2003 - 2007 by Roland Haeder                           *\r
16  * For more information visit: http://www.mxchange.org                  *\r
17  *                                                                      *\r
18  * This program is free software; you can redistribute it and/or modify *\r
19  * it under the terms of the GNU General Public License as published by *\r
20  * the Free Software Foundation; either version 2 of the License, or    *\r
21  * (at your option) any later version.                                  *\r
22  *                                                                      *\r
23  * This program is distributed in the hope that it will be useful,      *\r
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
26  * GNU General Public License for more details.                         *\r
27  *                                                                      *\r
28  * You should have received a copy of the GNU General Public License    *\r
29  * along with this program; if not, write to the Free Software          *\r
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
31  * MA  02110-1301  USA                                                  *\r
32  ************************************************************************/\r
33 \r
34 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )\r
35 require_once("inc/libs/security_functions.php");\r
36 \r
37 // Init "action" and "what"\r
38 global $what, $action;\r
39 $GLOBALS['what'] = ""; $GLOBALS['action'] = "";\r
40 if (!empty($_GET['action'])) $GLOBALS['action'] = trim(strip_tags($_GET['action']));\r
41 if (!empty($_GET['what'])) $GLOBALS['what'] = trim(strip_tags($_GET['what']));\r
42 \r
43 // Set module\r
44 $GLOBALS['module'] = "view"; $CSS = -1;\r
45 \r
46 // Load the required file(s)\r
47 require ("inc/config.php");\r
48 \r
49 if (((!empty($_GET['user'])) || (!empty($_GET['reseller']))) && (!empty($_GET['banner']))) {\r
50         // Count banner view... we currently don't need the user's id but maybe\r
51         $VIEW = 1;\r
52 \r
53         // for later things... ;-)\r
54         $result = SQL_QUERY_ESC("SELECT url FROM "._MYSQL_PREFIX."_refbanner WHERE id=%d LIMIT 1", array(bigintval($_GET['banner'])), __FILE__, __LINE__);\r
55         if (SQL_NUMROWS($result) == 1)  {\r
56                 list($url) = SQL_FETCHROW($result);\r
57                 SQL_FREERESULT($result);\r
58                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refbanner SET counter=counter+1 WHERE id=%d LIMIT 1", array(bigintval($_GET['banner'])), __FILE__, __LINE__);\r
59 \r
60                 $type = substr($url, -3);\r
61                 header ("Content-Type: image/".$type);\r
62                 LOAD_URL($url);\r
63         } else {\r
64                 // Free memory\r
65                 SQL_FREERESULT($result);\r
66         }\r
67         exit();\r
68 } else {\r
69         // Do nothing for now\r
70         LOAD_URL (URL."/index.php");\r
71 }\r
72 \r
73 //\r
74 ?>\r