Просмотр файла wwphpedited/wap/index.php

Размер файла: 6.68Kb
<?php
////////////////////////////////////////////////////////////////////////////
//               -_- W|W PHP-master -_-                                   //
//                                                                        //
//                Copyright 2008 MyIE                                     //
//  Create and Design by -_- MyIE                                         //
//  Site (web)           -_- http://www.phpedited.com                     //
//  Site (wap)           -_- http://wap.phpedited.com                     //
//  E-mail (MyIE)        -_- [email protected]                           //
//  ICQ (MyIE)           -_- 952-11-78                                    //
//                                                                        //
//  Вы не имеете право убирать копирайт                                   //
//  оффициального сайта!                                                  //
//This program is free software: you can redistribute it and/or modify    //
//it under the terms of the GNU General Public License as published by    //
//the Free Software Foundation, either version 3 of the License, or       //
//(at your option) any later version.                                     //
//                                                                        //
//This program is distributed in the hope that it will be useful,         //
//but WITHOUT ANY WARRANTY; without even the implied warranty of          //
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the            //
//GNU General Public License for more details.                            //
//                                                                        //
//You should have received a copy of the GNU General Public License       //
//along with this program. If not, see <http://www.gnu.org/licenses/>.    //
////////////////////////////////////////////////////////////////////////////
require_once"tmpl/conf.php";
require_once"tmpl/ses.php";
?>
<HTML>
<HEAD>
<?php
echo("<title>$title</title>");
?>
<meta name="description" content="вам ответит в кратчайший промежуток времени.">
<meta name="keywords" content="править,смс,sms,билайн,смартс,мтс,мегафон,теле2,faq,вопрос,ответ,скачать">
<?php
$files = fopen("lcl/thm.dt","r");
if(!$files)
{
echo("Ошибка открытия файла");
}
else
{
$url_thm = fgets ($files);
}
echo ("<Link href='thm-wp/$url_thm/style.css' type=text/css rel=stylesheet>");
fclose($files);
?>
<link rel="icon" href="favicon.ico" type="image/x-icon"> 
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta http-equiv="Content-Type" content="text/html" charset=windows-1251" />
</HEAD>
<BODY>
<table border=0 cellspacing=5 cellpadding=0 width=100%>
<tr>
<td>
<?php
echo("<a href='$url'><img src='thm-wp/$url_thm/logo.png' border=0 alt='$title'></a>");
?>
</td>
</tr>
</table>
<?php
require_once"tmpl/err.php";
?>
<table border=0 cellspacing=5 cellpadding=0 width=100%>
<tr>
<td><div class=a>Меню юзера</div></td>
</tr>
<tr>
<td><div class=b>
<?php
if (!$_SESSION)
{
?>
<table cellpadding=0 cellspacing=0>
  <tr>
<form method='get' action='tmpl/vhd.php'>
    <td>Логин:</td></tr><tr>
    <td><input name='log' type='text' maxlength=40 size=20 style='width:100px' class=input>&nbsp;</td>
  </tr>
  <tr>
    <td>Пароль:</td></tr><tr>
    <td><input name='pass' type='password' maxlength=20 size=20 style='width:100px' class=input>&nbsp;</td>
  </tr>
<tr>
    <td><input value='Вход' type='submit' class=submit></form></td>
  </tr>
</table>
<?php
$reg=fopen("lcl/rega.dt","r");
$regus=fgets($reg);
if ($regus==1)
{
?>
<a href='pgs/rgstr.php' class=cool>Регистрация</a>
<?php
}
if ($regus==0)
{
?>
<font color=red>Регистрация закрыта</font>
<?php
}

}
if ($_SESSION)
{
$log=$_SESSION['username'];
echo 'Привет, <a href=usr/prosmotr.php?log_pr=';
echo ("$log");
echo '><font color=red>'.$_SESSION['username'].'</font></a>';
echo ("<br><li><a href='usr/index.php'>Личный кабинет</a>");
echo ("<br><li><a href='tmpl/exit.php'>Выход [Exit]</a>");
////////// проверка на админа ////////
$file_array = file("lcl/prof/$log");
if(!$file_array)
	{
//echo("Ошибка открытия файла");
	}
if ($file_array[2]==101)
	{
echo ("<br><li><a href=$url/adm/index.php>В админ-панель</a>");
	}
}
?>
</div></td>
</tr>
<tr>
<td><div class=a>
Заголовок
</div></td>
</tr>
<tr>
<td>
<li><a href="..">WEB-master</a></li><br>
<?php
echo("<li><a href='$url'>На главную</a></li><br>");
?>
<li><a href="pgs/dwld.php">Скачать</a></li><br>
<li><a href="gb/index.php">Гостевая книга</a></li><br>
<li><a href="pgs/fq.php">FAQ</a></li><br>
<li><a href="pgs/usbr.php">Наши кнопки</a></li><br>
</td>
</tr>
<tr>
<td><div class=a>
Новости
</div></td>
</tr>
<tr>
<td>
<?php
/////// вывод новостей
$dir_rec = dir("lcl/nws/");
$i = 0;
while($entry = $dir_rec->read())
{
if (substr($entry,0,3)=="rec")
{
$names[$i]=substr($entry,4);
$i++;
}
}
$dir_rec->close(); // закрываем директорию
@rsort($names); // сортируем файлы
// определяем очередность сообщений и выводим их
$count = $i;
$count1 = $count;
if (empty($start))
{
$start = 0;
}
$start = intval($start);
if ($start < 0)
{
$start = 0;
}
// выводим одну новость
for ($i = $start; $i < 1; $i++)
{
$entry = $names[$i];
$data = file("lcl/nws/rec.".$entry);
$date = $entry;
$zagolovok = trim($data[0]);
$dat = trim($data[1]);
$news = trim($data[2]);
/////////////////////////
echo "<table border=0 width=100%>";
echo "<tr>";
echo "<td bgcolor=#666666>$zagolovok";
////////// проверка на админа ////////
if ($_SESSION)
{
$files_array = file("lcl/prof/$log");
if(!$files_array)
	{
echo("Ошибка открытия файла");
	}
if (($files_array[2]==101) || ($files_array[2]==102))
	{
echo (" <a href='adm/nws_edit.php?date=$date' class=cool>[edit]</a> <a href='tmpl/nws_del.php?date=$date' class=cool>[del]</a>");
	}
}
echo "</td><td bgcolor=#666666 align=right>$dat</td>";
echo "</tr>";
echo "<tr>";
echo "<td colspan=2>$news</td>";
echo "<tr>";
echo "</table>";
}
?>

</td>
</tr>
<tr>
<td><div class=a>
Инфо
</div></td>
</tr>
<tr>
<td>
<?php
$file = fopen("lcl/version.dt","r");
if(!$file)
{
echo("Ошибка открытия файла");
}
else
{
$version = fgets ($file);
}
echo ("$version<br>");
?>

</td>
</tr>
<tr>
<td><div class=a>
Сайты друзья
</div></td>
</tr>
<tr>
<td>
<li><a href="http://www.myietwo.cwx.ru/">Club-ICQ</a></li><br>
<li><a href="http://wap.phpedited.com/">W|W PHP-master</a></li><br>
</td>
</tr>
</table>

<table border=0 cellspacing=5 cellpadding=0 width=100%>
<tr>
<td>
<div id=footer>
Created by <a href="http://www.club-icq.pnz.ru">W|W PHP-master</a><br>
</footer>
</td>
</tr>
</table>
</BODY>
</HTML>