index.php

来自「极限网络智能办公系统 Office Automation V3.0官方100%源」· PHP 代码 · 共 44 行

PHP
44
字号
<?
include_once("inc/auth.php");
?>

<html>
<head>
<title>游戏</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body class="bodycolor" topmargin="5">

<table border="0" width="100%" cellspacing="0" cellpadding="3" class="small">
  <tr>
    <td class="Big"><img src="/images/menu/game.gif" WIDTH="22" HEIGHT="20" align="absmiddle"><span class="big3"> 游戏</span><br>
    </td>
    </tr>
</table>

<br>

<table border="0" cellspacing="1" width="450" class="small" bgcolor="#000000" cellpadding="3" align="center">
    <tr class="TableHeader">
      <td nowrap align="center">游戏列表</td>
    </tr>
<?
$GAME_NAME_ARRAY=array('俄罗斯方块','五联珠','三连棋','拯救金鱼','指球','上海','跳舞机','21点','打砖块','高尔夫','拉霸');

$COUNT=count($GAME_NAME_ARRAY);

for($I=0;$I<$COUNT;$I++)
{
?>
    <tr class="TableData">
      <td align="center"><a href="game.php?GAME_NAME=<?=$I?>&GAME_NAME_DESC=<?=$GAME_NAME_ARRAY[$I]?>"><?=$GAME_NAME_ARRAY[$I]?></a></td>
    </tr>
<?
}
?>

</table>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?