<?php session_start(); require_once ('lib/functions.lib.php'); require_once ('lib/db_config.php'); require_once('lib/datenbank.inc.php'); $datenbank = new DB; $grundconfig = $datenbank->get_row("SELECT * FROM ". PREFIX . CONFIG ." ",true); require_once ('lib/session.lib.php'); if (!isset($_GET['art'])) $_GET['art'] = ""; if (!isset($forced['tan'])) $forced['tan'] = ""; if (!isset($forced['ziel'])) $forced['ziel'] = ""; //Tan absichern $_GET['tan'] = addslashes ($_GET['tan']); $forced = $datenbank->get_row("SELECT ziel,tan FROM ". PREFIX . WERBUNG ." WHERE tan='".$datenbank->escape($_GET['tan'])."' LIMIT 1",true); echo '<!DOCTYPE> <html> <head> <title>Forcedklick by '.$grundconfig->seitenname.'</title> </head> <frameset rows="75,*" border="0"> <frame src="topframe_forced.php?tan='.$forced->tan.'" scrolling="no" frameborder="0"> <frame src="'. $forced->ziel .'" scrolling="auto" frameborder="0"> </frameset> </html>';