Newer sponsor scripts found in backup\! :D :D
[mailer.git] / inc / modules / sponsor / welcome.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/17/2005 *
4  * ===============                              Last change: 05/19/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : welcome.php                                      *
8  * -------------------------------------------------------------------- *
9  * Short description : Welcome page for sponsor area                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Willkommensseite des Sponsorenbereiches          *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyleft (c) 2003, 2004, 2005 by Roland Haeder                       *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software. You can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License.       *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
35         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
36         require($INC);
37 } elseif ((!EXT_IS_ACTIVE("sponsor")) && (!IS_ADMIN())) {
38         $FATAL[] = EXTENSION_PROBLEM_EXT_INACTIVE;
39         return;
40 } elseif (!IS_SPONSOR()) {
41         // No sponsor!
42         $FATAL[] = SPONSOR_ONLY_AREA_ENTERED;
43         return;
44 }
45
46 // Load some data
47 $result = SQL_QUERY_ESC("SELECT salut, surname, family, (points_amount - points_used) AS points
48 FROM "._MYSQL_PREFIX."_sponsor_data
49 WHERE id='%s' AND password='%s' LIMIT 1",
50  array(bigintval($_COOKIE['sponsorid']), $_COOKIE['sponsorpass']), __FILE__, __LINE__);
51 list($salut, $surname, $family, $points) = SQL_FETCHROW($result);
52
53 // Free memory
54 SQL_FREERESULT($result);
55
56 // Prepare data for the template
57 define('__SALUT'  , TRANSLATE_SEX($salut));
58 define('__SURNAME', $surname);
59 define('__FAMILY' , $family);
60 define('__POINTS' , TRANSLATE_COMMA($points));
61
62 // Load main template
63 $OUT = LOAD_TEMPLATE("sponsor_welcome", true);
64
65 //
66 ?>