Skip to content
Snippets Groups Projects
pl.php 752 B
Newer Older
Eric Laufer's avatar
Eric Laufer committed
<?
@require_once ('lib/functions.lib.php');
@db_connect();
@require_once ('lib/session.lib.php');
if (!isset($_GET['art']))		$_GET['art']		= "";
if (!isset($text['tan']))		$text['tan']		= "";
if (!isset($text['ziel']))	$text['ziel']		= "";
$text = mysqli_fetch_array(db_query("SELECT * FROM ".$db_prefix."_gebuchte_werbung WHERE tan='".$_GET['tan']."'"));
?>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
	<title>Paidlink by <?=$seitenname;?></title>
</head>

<frameset rows="25,*" border="0">
<frame name="abuse" src="topframe_text.php?tan=<?=$text['tan'];?>" scrolling="no" frameborder="0">
<frame name="werbung" src="<?=$text['ziel'];?>" scrolling="auto" frameborder="0">
</frameset>
</body>
</html>
<?db_close();?>