?? menu.php
字號:
<?
####################################################################################
// Setting menu titles
####################################################################################
$menu_list="Backup,Restore,Information";
####################################################################################
// Building the menu
####################################################################################
$menu_list=explode(",",$menu_list);
for($i=0;$i<sizeof($menu_list);$i++)
{
$temp1="bgcolor".$i;
$temp2="b".$i;
if($pmode==($i+1)){$$temp1="bgcolor=#F1F9FD";$$temp2="<b>";}
}
?>
<table align=center width=100% cellpadding=2 cellspacing=0 border=1 bordercolor=white bgcolor=#C9F0FF>
<tr>
<?
for($i=0;$i<sizeof($menu_list);$i++)
{
$temp1="bgcolor".$i;
$temp2="b".$i;
?>
<td width=9% align=center <?=$$temp1?> nowrap>
<a href="admin_counter.php?counter=<?=$counter?>&pmode=<?=($i+1)?>&id=<?=$id?>"><?=$$temp2?><?=$menu_list[$i]?></a>
</td>
<?
}
?>
</tr>
</table>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -