Thaifrau
01.08.2011, 08:09
Hallo,
ich habe bei mir den Ajax Klickbereich eingebaut. Soweit funktioniert alles gut, bis auf die Paidlinks:
http://besucher.rolaxx.de/fehler.jpg
Da wird im Header keine Restzeit angezeigt.
Hierzu meine Datei 'pl.php' :
<?
@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 = mysql_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>
<?
if ($_GET['ac'] == 1) { $ac = true; } else { $ac = false; }
if ($_GET['rt'] == 1) { $rt = true; } else { $rt = false; }
?>
<script type="text/javascript">
var i = <? echo $text['aufendhalt']?>;
var title = document.title;
<? if($rt == true) { ?>
function status() {
if (i > -1) {
if (i >= 10) {
document.title = i-- + " | " + title;
} else {
document.title = "0" + i-- + " | " + title;
}
window.setTimeout("status();",1000);
} else {
<? if($ac == true) { echo 'window.setTimeout("window.close();", 3000);'; } ?>
}
}
status();
<? } else { ?>
window.setTimeout("window.close();", i * 1000 + 3000);
<?
}
?>
</script>
</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();?>
Hat vielleicht Jemand einen Tip für mich?
Danke und eine schöne Woche!
Thaifrau
ich habe bei mir den Ajax Klickbereich eingebaut. Soweit funktioniert alles gut, bis auf die Paidlinks:
http://besucher.rolaxx.de/fehler.jpg
Da wird im Header keine Restzeit angezeigt.
Hierzu meine Datei 'pl.php' :
<?
@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 = mysql_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>
<?
if ($_GET['ac'] == 1) { $ac = true; } else { $ac = false; }
if ($_GET['rt'] == 1) { $rt = true; } else { $rt = false; }
?>
<script type="text/javascript">
var i = <? echo $text['aufendhalt']?>;
var title = document.title;
<? if($rt == true) { ?>
function status() {
if (i > -1) {
if (i >= 10) {
document.title = i-- + " | " + title;
} else {
document.title = "0" + i-- + " | " + title;
}
window.setTimeout("status();",1000);
} else {
<? if($ac == true) { echo 'window.setTimeout("window.close();", 3000);'; } ?>
}
}
status();
<? } else { ?>
window.setTimeout("window.close();", i * 1000 + 3000);
<?
}
?>
</script>
</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();?>
Hat vielleicht Jemand einen Tip für mich?
Danke und eine schöne Woche!
Thaifrau