📄 grab_global.php
字号:
<?php
/**
* Web based SQLite management
* Export and init variable
* @package SQLiteManager
* @author Fr閐閞ic HENNINOT
* @version $Id: grab_global.php,v 1.3 2004/01/04 13:44:55 freddy78 Exp $ $Revision: 1.3 $
*/
if (!empty($_GET)) {
extract($_GET);
}
if (!empty($_POST)) {
extract($_POST);
}
// Notice Error Management
if(!isset($dbsel)) $dbsel = "";
if(!isset($action)) $action = "";
if(!isset($table)) $table = "";
if(!isset($TableName)) $TableName = "";
if(!isset($view)) $view = "";
if(!isset($ViewName)) $ViewName = "";
if(!isset($trigger)) $trigger = "";
if(!isset($TriggerName)) $TriggerName = "";
if(!isset($function)) $function = "";
if(!isset($index_action)) $index_action = "";
if(!isset($export_action)) $export_action = "";
if(!isset($option_action)) $option_action = "";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -