📄 index.php
字号:
<?php
/********************************************************************************/
/* Wap-2-Go Mobile Phone Nuke-Addon */
/* bringing the Advanced Content Management System to Mobile Format */
/* =========================================================================== */
/* powered by Nuke SQL Database */
/* */
/* Copyright (c) 2007 by Philip Marsh - http://wap2go.co.uk */
/* */
/* MOBILE MODULE: Your_Account */
/* */
/********************************************************************************/
include("modules/Forums/functions.php");
// Fetch Query Strings
if ($_GET['username']) { $username = stripslashes($_GET['username']); }
if ($op!="")
{
if ($op=="userinfo") {
// Manually Set Screen Width
$content = "";
if ($username)
{
$content = userinfo($username);
$content = char_dec($content);
OpenTable();
echo $content;
CloseTable();
}
}
}
// Options On All Pages
$title = ""._MENUFOR." ".$modulename.":";
$content = _P_CENTER."MODULE UNDER RECONSTRUCTION"._P_END;
OpenTable();
$title = char_dec($title);
$content = char_dec($content);
Title($title);
echo $content;
CloseTable();
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -