File size: 3.86Kb
<?php
error_reporting(7);
$incl_game = 1;
require_once"../includes/functions/gzip.php";
include('../start.php');
include("../config.php");
include("../includes/".$ver."/banned");
list($msec, $sec) = explode(chr(32), microtime());
$headtime = $sec + $msec;
$ref = rand(1000, 9999);
switch($ver)
{
////////////////////////////////////////////////////////
//WML VERSION
////////////////////////////////////////////////////////
case 'wml':
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");
//AUTH
$id = intval($_SESSION['id']);
$password = mysql_escape_string($_SESSION['password']);
$q = mysql_query("SELECT `posts` FROM `chat_users` WHERE `id` = '".$id."' AND `password` = '".md5($password)."';");
if(mysql_num_rows($q) == 0)
{
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\"><wml>\n";
echo "<card title=\"ERROR\" ontimer=\"index.php?ver=wml\"><timer value=\"15\"/><p align=\"left\">\n";
echo "<small>Authorization Failed!<br/>\n";
list($msec, $sec) = explode(chr(32), microtime());
echo "<br/>[".round(($sec+$msec)-$headtime,5)."] sec<br/>\n";
echo "</small>";
require_once "../includes/functions/gzip_foot.php";
echo "</p></card></wml>";
ob_end_flush();
exit();
}
//END AUTH
$posts = mysql_result($q, 0);
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\"><wml>\n";
print "<card id=\"index\" title=\"Guess the number!\">
<p align=\"center\">";
if($posts<"10") {print "You have not enough posts!";}
else {
print "Guess Number <br/> *******< br />
Do you: <b> $posts </ b> posts <br/> from 1 to 10 <br/>
Guess <br/><input name=\"stavka\" title=\"stavka\" maxlength=\"2\" format=\"*N\"/><br/>
<br/>
<anchor title=\"go\">Play
<go href=\"ugadal.php?".SID."\" method=\"post\">
<postfield name=\"stavka\" value=\"$(stavka)\"/>
</go></anchor>";}
print "<br/><--><br/>
<a href=\"index.php?".SID."&ver=wml\">Game Club</a><br/>
<a href=\"../menu.php?".SID."&ver=wml\">HaLL</a><br/>";
list($msec, $sec) = explode(chr(32), microtime());
echo "<br/><small>[".round(($sec+$msec)-$headtime,5)."] sec</small><br/>\n";
require_once "../includes/functions/gzip_foot.php";
echo "</p></card></wml>";
ob_end_flush();
@mysql_close();
break;
////////////////////////////////////////////////////////
//HTML VERSION
////////////////////////////////////////////////////////
case 'html':
$my_title = 'Ugad';
if(!isset($_COOKIE['theme'])) $_COOKIE['theme'] = 1;
include_once '../themes/'.intval($_COOKIE['theme']).'/index.php';
//AUTH
$id = intval($_SESSION['id']);
$password = mysql_escape_string($_SESSION['password']);
$q = mysql_query("SELECT `posts`, `gbalans` FROM `chat_users` WHERE `id` = '".$id."' AND `password` = '".md5($password)."';");
if(mysql_num_rows($q) == 0)
{
echo "Authorization Failed!<br/>\n";
include_once "../themes/".intval($_COOKIE['theme'])."/foot.php";
exit();
}
//END AUTH
$posts = mysql_result($q, 0, 'posts');
if($posts<"10") {print "You have not enough posts!";}
else {
print "Guess Number <br/> *******< br />
Do you: <b> $posts </ b> posts <br/> from 1 to 10 <br/>
Guess <br/>";
echo "<form action=\"ugadal.php?".SID."&ver=html&case=game\" method=\"post\">\n";
echo "Baшe чиcлo-cтaвкa:<br/>\n";
echo "<input name=\"stavka\" value=\"\" maxlength=\"2\" size=\"5\"/><br/>";
echo "<input type=\"submit\" value=\"Play\" /></form>\n";
;}
print "<br/><--><br/>
<a href=\"index.php?".SID."&ver=html\">Game Club</a><br/>
<a href=\"../menu.php?".SID."&ver=html\">HaLL</a><br/>";
include_once "../themes/".intval($_COOKIE['theme'])."/foot.php";
@mysql_close();
break;
}
?>