get.php
来自「dhtmlxGrid是DHTMLX公司的一个非常不错的JAVASCRIPT的网格」· PHP 代码 · 共 39 行
PHP
39 行
<?php
/*
Copyright Scand LLC http://www.scbr.com
This version of Software is free for using in non-commercial applications.
For commercial use please contact info@scbr.com to obtain license
*/
error_reporting(E_ALL ^ E_NOTICE);
require_once("uDataLink.php");
require_once("db.php");
if (array_key_exists('ctrl',$_GET)) {
switch($_GET['ctrl']){
case "tree":
//print data as XML
$temp=new uDataLink("tree_data.json");
$temp->printXMLHeader("tree","id='0'");
break;
default:
// print data as XML
// $temp=new uDataLink("data.json");
// for some tables
$temp=new uDataLink("greed_test.json");
$temp->printXMLHeader("rows");
break;
}
} else {
// as default in "case"
// $temp=new uDataLink("data.json");
// for some tables
$temp=new uDataLink("greed_test.json");
$temp->printXMLHeader("rows");
}
$temp->getXML();
$temp->printXMLFooter();
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?