index.php
来自「一个好用的php wap cms portal」· PHP 代码 · 共 43 行
PHP
43 行
<?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 + =
减小字号Ctrl + -
显示快捷键?