File size: 3.17Kb
<?php
error_reporting(0);
include"./includes/functions/gzip.php";
//Opredelenie podderjki html
if(!array_key_exists('HTTP_ACCEPT', $_SERVER) || empty($_SERVER['HTTP_ACCEPT'])){
$_GET['ver'] = 'wml';
} else {
if(preg_match('/(application|text)\/(vnd\.wap\.wml|vnd\.wap\.wmlc|vnd\.wap\.wmlscript|vnd\.wap\.wmlscriptc|vnd\.wap\.wbxml)/i', $_SERVER['HTTP_ACCEPT']) && !isset($_GET['ver'])) $_GET['ver'] = 'wml';
}
//konec opr. html
list($msec, $sec) = explode(chr(32), microtime());
$headtime = $sec + $msec;
include("config.php");
include("./includes/constants/index");
include("./includes/".$ver."/banned");
$nocache = rand(1000, 9999);
switch($ver)
{
case 'wml':
///////////////////////////////////////////////////////
//WML VERSION
///////////////////////////////////////////////////////
header("Content-type: text/vnd.wap.wml; charset=utf-8");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-cache, must-revalidate");
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
echo "<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.3//EN\" \"http://www.wapforum.org/DTD/wml13.dtd\">\n<wml>\n";
$chat = file("chat.dat");
$logo = trim($chat[0]);
$message = trim($chat[1]);
$q = mysql_query("SELECT COUNT(`id`) FROM `chat_users` WHERE `time` >= ".time().";");
$online = mysql_result($q, 0);
$q = mysql_query("SELECT COUNT(`id`) FROM `chat_users`;");
$users = mysql_result($q, 0);
echo "<head><meta http-equiv=\"Cache-Control\" content=\"no-cache\" forua=\"true\"/></head>\n";
echo "<card id=\"index\" title=\"".TITLE."\"><p align=\"center\">\n";
echo "<!-- Developed by ILI -->\n";
if(!empty($logo)) echo "<img src=\"http://$logo\" alt=\"\" /><br/>\n";
if(!empty($message)) echo "$message<br/>\n";
echo "Ник:<br/>\n";
echo "<input type=\"text\" name=\"nickname$nocache\" maxlength=\"15\"/><br/>\n";
echo "Транслитировать:<br/>\n";
echo "<select name=\"translit$nocache\">\n";
echo "<option value=\"false\">Нет</option>\n";
echo "<option value=\"true\">Да</option>\n";
echo "</select><br/>\n";
echo "Пароль:<br/>\n";
echo "<input type=\"password\" name=\"password$nocache\" maxlength=\"20\"/><br/>\n";
echo "<anchor>[Вход]<go href=\"menu.php?ver=wml&nocache=$nocache\" method=\"post\">\n";
echo "<postfield name=\"nickname\" value=\"$(nickname$nocache)\"/>\n";
echo "<postfield name=\"translit\" value=\"$(translit$nocache)\"/>\n";
echo "<postfield name=\"password\" value=\"$(password$nocache)\"/>\n";
echo "<postfield name=\"action\" value=\"auth\"/>\n";
echo "</go></anchor><br/>\n";
echo "<anchor>[Вход по id]<go href=\"aulog.php?ver=wml&nocache=$nocache\" method=\"post\">\n";
echo "<postfield name=\"id\" value=\"$(nickname$nocache)\"/>\n";
echo "<postfield name=\"password\" value=\"$(password$nocache)\"/>\n";
echo "</go></anchor><br/>\n";
echo ONLINE.": <a href=\"inchat.php?ver=wml\">$online</a><br/>\n";
echo REG_USERS.": ".$users."<br/>\n";
echo "<a href=\"rules.php?ver=wml\">Правила</a><br/>\n";
echo "<a href=\"rules.php?ver=wml&action=registration\">Регистрация</a><br/>\n";
echo "<anchor><prev/>назад</anchor><br/>\n";
require_once "includes/functions/gzip_foot.php";
echo "</p></card></wml>";
ob_end_flush();
break;
}
?>