Файл: sys/fnc/rekl.php
Строк: 52
<?php
#Переделано для более простого сценария
function rekl($sel) {
global $set;
if ($sel == 3 && $_SERVER['PHP_SELF'] != '/index.php') {
$sel = 4;
}
$q = mysql_query("SELECT * FROM `rekl` WHERE `sel` = '$sel' AND `time_last` > '" . time() . "' ORDER BY id ASC");
while ($post = mysql_fetch_assoc($q)) {
#Главная страница (меню)
if ($sel == 2) {
if ($post['dop_str'] == 1) {
echo "<a" . (IS_WEB ? " target='_blank'" : null) . " href='http://$_SERVER[SERVER_NAME]/go.php?go=$post[id]' class='collection-item'><i class='material-icons left'>local_offer</i> ";
} else {
echo "<a" . (IS_WEB ? " target='_blank'" : null) . " href='$post[link]' class='collection-item'><i class='material-icons left'>local_offer</i> ";
}
if ($post['img'] == NULL) {
echo "$post[name]";
} else {
echo "<img src='$post[img]' alt='$post[name]' />";
}
echo "</a>n";
}
#Низ сайта (остальные)
if ($sel == 3) {
if ($post['dop_str'] == 1) {
echo "<center><a" . (IS_WEB ? " target='_blank'" : null) . " href='http://$_SERVER[SERVER_NAME]/go.php?go=$post[id]' class='collection-item'> ";
} else {
echo "<center><a" . (IS_WEB ? " target='_blank'" : null) . " href='$post[link]' class='collection-item'> ";
}
if ($post['img'] == NULL) {
echo "$post[name]";
} else {
echo "<img src='$post[img]' alt='$post[name]' />";
}
echo "</a></center>n";
}
if ($sel == 1) {
if ($post['dop_str'] == 1) {
echo "<a" . (IS_WEB ? " target='_blank'" : null) . " href='http://$_SERVER[SERVER_NAME]/go.php?go=$post[id]' class='collection-item'> ";
} else {
echo "<a" . (IS_WEB ? " target='_blank'" : null) . " href='$post[link]' class='collection-item'> ";
}
if ($post['img'] == NULL) {
echo "$post[name]";
} else {
echo "<img src='$post[img]' alt='$post[name]' />";
}
echo "</a>n";
}
if ($sel == 4) {
if ($post['dop_str'] == 1) {
echo "<center><a" . (IS_WEB ? " target='_blank'" : null) . " href='http://$_SERVER[SERVER_NAME]/go.php?go=$post[id]' class='collection-item'> ";
} else {
echo "<center><a" . (IS_WEB ? " target='_blank'" : null) . " href='$post[link]' class='collection-item'> ";
}
if ($post['img'] == NULL) {
echo "$post[name]";
} else {
echo "<img src='$post[img]' alt='$post[name]' />";
}
echo "</a></center>n";
}
}
}