PhpGrid is a PHP development class library (tool) used to quickly develop website backends and management systems (ERP, OA, CRM, etc.).
The main functions are as follows:
Simple, you don’t need to spend more time learning, and you can automatically generate CRUD (add, display, delete, modify) pages without writing a line of code.
Ajax technology can edit the data in the table in real time, quickly import, export the data to automatically generate a form, and can customize the form with built-in form validation function code. Modular design can be easily integrated with Fckeditor.
Easy to extend, when the framework cannot meet your complex business needs, you can easily extend the framework
phpgrid2.1 Alpha has updated the following functions
The current version only supports php5. PHP4 will support the addition of an automated code generation tool in the next version. Using this tool, you can easily generate pages with table and form functions without writing a line of code.
Attached is a code tool that automatically generates phpgrid. With just one click of the mouse, you can generate streamlined CSS styles. Changing the interface will be easy. The CSS file is located in phpgrid/skin/blue/grid.css
A View class has been added. Compared to Grid, View is only used to display data and does not have functions such as adding and deleting. Commonly used extension functions: The parameter $key in replaceValue($arr,$key,$value) is no longer a field. The serial number, but the name of the field, the form content can be read from the template (the template file should be stored in phpgrid/template)
Fixed bugs in import, export and printing functions
Expand