View file mobila/index.php

File size: 4.49Kb
<?php
#-----------------------------------------------------#
#          ********* WAP-MOTORS *********             #
#             Made by   :  Hoooch                     #
#               E-mail  :  [email protected]             #
#             WAP-Site  :  http://vira.h2m.ru         #
#                  ICQ  :  77-148-55                  #
#  Вы не имеете право вносить изменения в код скрипта #
#        для его дальнейшего распространения          #
#-----------------------------------------------------#	
require_once "../includes/start.php";
require_once "../includes/functions.php";
require_once "../includes/header.php";
include_once "../themes/".$config['themes']."/index.php";
function unicode($string) {
$rus=array('А','Б','В','Г','Д','Е','Ж','З','И','Й','К','Л','М','Н','О','П','Р','С','Т','У','Ф','Х','Ц','Ч','Ш','Щ','Ъ','Ы','Ь','Э','Ю','Я','а','б','в','г','д','е','ж','з','и','й','к','л','м','н','о','п','р','с','т','у','ф','х','ц','ч','ш','щ','ъ','ы','ь','э','ю','я');
$string=str_replace('Ё','&#1025;',$string);
$string=str_replace('ё','&#1105;',$string);
for($i=0; $i<count($rus); $i++) {
$s=1040;
$d='&#'.($s+$i).';';
$string=str_replace($d,$rus[$i],$string);
}
return $string;
}
if (empty($_GET['cat'])) {
$file=file('data/index.txt');

for($i=0;$i<count($file);$i++) {
$str=trim($file[$i]);
$arr=explode('|',$str);
$cat=$arr[0];
$name=$arr[1];
$num=$arr[2];
echo '<div class="p_m"><a href="?cat='.$cat.'">'.$name.'</a> ('.$num.')</div>
';
}
echo '<br />';
} else if (empty($_GET['mob'])) {
$cat=$_GET['cat'];
$file=file('data/index.txt');

for($i=0;$i<count($file);$i++) {
$str=trim($file[$i]);
$arr=explode('|',$str);
$name=$arr[1];
if ($cat==$arr[0]) {
echo '<div class="p_t"><center><b>'.$name.'</b></center></div>
'; break;
}}
$page=@$_GET['page']?$_GET['page']:1;
$file=file('data/'.$cat.'.cat');
$count=count($file);
$end=$page*30;
$start=$end-30;
for ($i=$start; $i<$end; $i++) {
if (!empty($file[$i])) {
$str=trim($file[$i]);
$arr=explode('|',$str);
$mob=$arr[0];
$name=$arr[1];
echo '<div class="p_m"><a href="?mob='.$mob.'&amp;cat='.$cat.'">'.$name.'</a></div>
';
}}
$page_nav=ceil($count/30);
if ($page<=$page_nav and $page_nav>1) {
echo '<div class="str">
Страницы: ';
$pages=3;
$link=0;
$link2=0;
if ($page>($page_nav-$pages)) {
$link2=$page_nav-$page;
$link2=$pages-$link2;
}
if ($page>($pages+1) and $page_nav>7) {
echo '<a href="?page=1&amp;cat='.$cat.'">1</a> ';
}
if (($page-$pages)>2 and $page_nav>8) {
echo ' ... ';
}
for ($i=(($page-$pages)-$link2); $i<$page; $i++) {
if ($i>0) {
echo '<a href="?page='.$i.'&amp;cat='.$cat.'">'.$i.'</a> ';
$link++;
}}
$link=$pages-$link;
echo '<b>'.$page.'</b> ';
for ($i=($page+1); $i<((($page+$pages)+1)+$link); $i++) {
if ($i<=$page_nav) {
echo '<a href="?page='.$i.'&amp;cat='.$cat.'">'.$i.'</a> ';
}}
if (($page+$pages)<($page_nav-1) and $page_nav>8) {
echo ' ... ';
}
if ($page<($page_nav-$pages) and $page_nav>7) {
echo '<a href="?page='.$page_nav.'&amp;cat='.$cat.'">'.$page_nav.'</a>';
}
echo '</div>

';
}
echo '<div class="foot">
&laquo; <a href="index.php">Телефоны</a></div>
';
} else if (!empty($_GET['cat'])) {
$cat=$_GET['cat'];
$mob=$_GET['mob'];
$file=file('data/index.txt');

for($i=0;$i<count($file);$i++) {
$str=trim($file[$i]);
$arr=explode('|',$str);
$name=$arr[1];
if ($cat==$arr[0]) {
echo '<div class="p_t"><center><b>'.$name.'</b></center></div>
'; break;
}}
echo '<div class="p_m">
';
$file=file_get_contents('data/'.$mob.'.mob');
echo $file.'
</div>';
echo '<b>Поиск Google</b><br />';

echo '<font color="#ff1000">:: Введите данную модэль телефона::</font>';


echo '<form action="http://www.google.ru/xhtml/search">';

echo '<input maxlength="2048" size="15" name="q" value='.$name.'><br />

<input type="submit" value="Поиск" name="6tnG"><br />';
echo '<input type="radio" checked value="images" name="site">Картинки<br />';
echo '<input type="radio" value="mobile" name="site">WAP-интернет<br />';
echo '</form>';
echo '<div class="foot">&laquo; <a href="index.php?cat='.$cat.'">'.$name.'</a><br />
&laquo; <a href="index.php">Телефоны</a></div>
';
}
echo '<img src="../images/img/homepage.gif" alt="image" /> <a href="../index.php?'.SID.'">На главную</a> '; 
include_once "../themes/".$config['themes']."/foot.php";
?>