+ + +
С нами с 30.12.05
Сообщения: 3477
Рейтинг: 1658
|
Добавлено: 02/04/07 в 01:31 |
в этот текст
Код: | <?php
session_start();
error_reporting(0);
include ("config.php");
include ("functions.php");
$id = clean_string($_GET['id']);
$report = clean_string($_GET['report']);
// If the user reports the content, it will update the database and then
// redirect the user back to the main page
if (!empty($report)){
$update_items = mysql_query("UPDATE items
set reports = reports + 1
where id = '$report'");
// Now check to see if its OVER the REPORTS limit, if so change status to REPORTED
$pick_item = "SELECT * FROM items where id = $report LIMIT 1";
$result = mysql_query($pick_item);
if(mysql_num_rows($result))
{
while($row = mysql_fetch_array($result))
{
$num_reports = $row['reports'];
}
}
if ($num_reports >= $reports && $reports > 0)
$update_items = mysql_query("UPDATE items
set status = '2'
where id = '$report'");
// End REPORT status change
header('Location: '.$base_url.'index.php');
exit;
}
// End report
$pick_item = "SELECT * FROM items where status = 1 && id = $id LIMIT 1";
$result = mysql_query($pick_item);
if(mysql_num_rows($result))
{
while($row = mysql_fetch_array($result))
{
$contenttitle = $row['title'];
$contenttitle = stripslashes($contenttitle);
$contenturl = $row['url'];
$_SESSION['contenttitle'] = $contenttitle;
$_SESSION['contentid'] = $id;
}
}
else{
// If its an invalid item then the user will be redirected to the main page
header('Location: index.php');
exit;
}
if (($_SESSION['lastitem'] != $id && $trackclicks == 1)){
$update_item = mysql_query("UPDATE items
set hits = hits + 1
where id = '$id'");
}
// This is setup so if someone RELOADS a page or goes to the same item over and over
// again it will only count once.
$_SESSION['lastitem'] = $id;
// If the user has turned off FRAME OUT, then we will just direct to the URL itself
if ($frameout == 0){
header('Location: '.$contenturl.'');
exit;
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="description" content="<?=$contenttitle;?>">
<title><?=$sitename;?> :: <?=$contenttitle;?></title>
</head>
<frameset rows="100,*" frameborder="no" border="0" framespacing="0">
<frame src="<?=$base_url;?>topframe.php" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame">
<frame src="<?=$contenturl;?>" name="mainFrame" id="mainFrame" title="mainFrame">
</frameset>
<noframes><body>
</body>
</noframes></html>
|
нужно вставить рекламу:
Код: | <!-- START ADENGAGE.COM CODE 2.0 -->
<STYLE>
.ae_table_vert { width:auto; height:auto; background-color:; }
.ae_td_vert,.ae_image_td_vert { padding-bottom: 4px; padding-top: 4px; padding-left: 3px; padding-right: 3px; vertical-align:top; }
.ae_image_td_vert, .ae_image_td_horiz { text-align:right; padding-top:4px; padding-bottom:4px; padding-right: 4px; }
.ae_image_td_sky { text-align:left; padding-top:4px; padding-bottom:0px; padding-right: 0px; }
.ae_bb_td_vert { padding-bottom: 4px; padding-top: 4px; padding-left: 3px; padding-right: 3px; vertical-align:top; }
A.ae_title_vert, A.ae_image_link_vert {font-family: Verdana,Arial; font-size: 18px; font-style: normal; font-weight: bold; font-variant: normal; text-transform: none; color: blue; text-decoration: none; }
.ae_desc_vert {font-family: Verdana,Arial; font-size: 12px; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; color: black; }
.ae_click_count_vert {font-family: Verdana,Arial; font-size: 10px; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; color: gray; }
A.ae_powered_vert {font-family: Verdana,Arial; font-size: 10px; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; color: blue; text-decoration: none; }
A.ae_yourlink_vert {font-family: Verdana,Arial; font-size: 10px; font-style: normal; font-weight: bold; font-variant: normal; text-transform: none; color: blue; text-decoration: none; }
A.ae_title_vert:hover, A.ae_powered_vert:hover, A.ae_yourlink_vert:hover, A.ae_image_link_vert:hover { color: blue; text-decoration: underline;}
.ae_image_vert { border-width:1px; border-color:blue;}
</STYLE>
<SCRIPT LANGUAGE="JavaScript">
adengage_num_ads = 1;
adengage_layout_type = "vert";
adengage_show_your_ad_here = 1;
adengage_yourlink_text = "See your link here";
adengage_show_powered_by = 0;
adengage_show_click_count = 0;
adengage_class_suffix = adengage_layout_type;
adengage_arrow_text = "";
window.adengage_draw_break = 1;
window.adengage_use_image = 1;
window.adengage_image_size = 50;
window.adengage_hide_desc = 0;
</SCRIPT><SCRIPT SRC="http://adcode.adengage.com/js/ae_20330_adbox.js" LANGUAGE="JavaScript"></SCRIPT>
<!-- END ADENGAGE.COM CODE 2.0 --> |
так чтобы в подобных ссылках ( http://www.sex-dump.net/itemout.php?id=524 ) сверху, в ифрейме показывалась моя реклама.
всем откликнувшимся зарание огромное спасибо и конечное рейтинг по максимуму
|
|
|
|
Гугль - хуйло! ла-ла-ла-ла-ла
С нами с 22.02.03
Сообщения: 1378
Рейтинг: 1478
|
Добавлено: 02/04/07 в 02:22 |
Ну так пропиши код в topframe.php
там даже место для этого есть
Код: | <td align="center" valign="top">
<!-- GOOD PLACE TO PUT ADS -->
<!-- END -->
</td>
|
|
|
|
|
+ + +
С нами с 30.12.05
Сообщения: 3477
Рейтинг: 1658
|
Добавлено: 02/04/07 в 02:51 |
СПАСИБО
+ 8, заработало!
loksa ты знаком со скриптом...покажи плз свои дампы(можно в асю - 644--два-5-2-3)
ссылками за одно не хочешь обменяться?
|
|
|
|
Гугль - хуйло! ла-ла-ла-ла-ла
С нами с 22.02.03
Сообщения: 1378
Рейтинг: 1478
|
Добавлено: 02/04/07 в 03:02 |
USAma писал: | ты знаком со скриптом... |
Нет, первый раз тут и увидел. Просто пробежался по хтмл коду глазами, тут сразу видно что куда.
Дампов нету тоже
|
|
|
|
Текстовая реклама в форме ответа Заголовок и до четырех строчек текста Длина текста до 350 символов Купить рекламу в этом месте! |