Data Grid in PHP(PHP 中的数据网格)
问题描述
我需要在使用 php 作为后端编程语言的 Web 应用程序中创建一个数据网格,该数据网格将从 MySQL 数据库对象(视图、存储过程)填充.最终用户应该能够编辑此数据网格中的数据,并且需要更新 MySQL 表中的数据.
I need to create a datagrid in a web application using php as the backend programming language, which will be populated from a MySQL database objects (views, stored procedures). The end user should be able to edit the data in this datagrid and the data in MySQL tables will need to get updated.
如果你能给我一些例子 - 教程、演示、项目以及如何使用这些例子的解释,这将是一个很大的帮助.
If you can give me some examples -tutrial, demos, project with explanation on how to use those with examples, it will be a great help.
推荐答案
您可以使用 http://phpgrid.com
$dg = new C_DataGrid("SELECT * FROM orders", "orderNumber", "orders");
// change column titles
$dg->set_col_title("orderNumber", "Order No.");
$dg->set_col_title("orderDate", "Order Date");
$dg->set_col_title("shippedDate", "Shipped Date");
$dg->set_col_title("customerNumber", "Customer No.");
// hide a column
$dg -> set_col_hidden("requiredDate");
// change default caption
$dg -> set_caption("Orders List");
$dg -> display();
示例可以在 http://phpgrid.com/example/
它易于使用且外观漂亮.
it's easy to use and looks pretty.
这篇关于PHP 中的数据网格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP 中的数据网格
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- Laravel 仓库 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01