userlinks.txt.php
来自「类似youtube的视频分享网站源码。有后台管理系统及模板」· PHP 代码 · 共 29 行
PHP
29 行
<?php
$MainLinksArray = array (
array("User Management","#",1) ,
array("Options","#",1)
);
/********************************************************************
This is the child links array.
Paramters to be passed
0 ==> Title of the link
1 ==> The url to be passed
Note:
In this parameter if u want to include a subtree of links
then put a # in this location
2 ==> The Main Link ID
********************************************************************/
$ChildLinksArray = array(
array("All","users.php",0),
array("Active","users.php?a=Active",0),
array("Inactive","users.php?a=Inactive",0),
array("Search","users.php?a=Search",1),
array("Send Email", "muser.php?a=user", 1)
);
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?