Main Panel
Choose your database in the dropdown list and validate. You will then see the complete panel appear.

PHP CRUD Generator is a program developed in pure PHP for building complete website administration panels using a visual interface.
PHPCG is suitable for both non-programmers and advanced PHP programmers, who will have access to a clean and well organized code so they can take advantage of all its potential.
PHPCG is able to analyze your database, extract tables, fields and any type of relationship intelligently.
mb_string
extension enabledinstall/index.php
- in your browser.generator/generator.php
- in your browser.
Choose your database in the dropdown list and validate. You will then see the complete panel appear.
Click the "Add Filter" button in the Read Lists generator form to add a new filter.
This will add a new filter to your list.
PHPCG offers you 2 types of filters:
You just have to choose the field to filter in the dropdown list.
Advanced filters are useful:
To use advanced filters it is necessary to enter query parameters with joins.
A help button is available to help you build your query, as well as a preview button that allows you to view the generated drop-down list and check its validity.
Click the Install User Authentification Module button to launch the installer.
The installer will create the users and the users_profiles tables
You will also have enter the main administrator informations.
The main administrator can then manage users and profiles in the admin panel.
Click the Organize Navbar button to open the tool.
You can group the CRUD elements into categories and choose icons for each one.
The navbar structure is registered in admin/crud-data/nav-data.json
If your database structure changes along the way, PHPCG is able to rebuild the data and allows you to regenerate the corresponding CRUD pages.
When generating administration panel pages, PHPCRUD automatically keeps a backup of the previous version.
The file comparison tool integrated with the generator allows you to compare side by side your current version and the previous one, and to merge them by choosing the code blocks to be retained.
Administration customizations can thus be retained during version/structure changes.
When a new version is released, you'll see the "New PHP CRUD GENERATOR version is available" message in /generator/generator.php
and will just have to click the "Install" button.
/generator/update
folder to /generator/update
on your server.generator/update/first-update.php
in your browser./generator/generator.php
in your browser and click the Install
button.PHP CRUD Generator and the generated website admin panel are both fully multi-language.
To translate to your own language:
admin/i18n/en.php
and rename it to your own language.admin/i18n/xx.php
)conf/user-conf.php
and replace define('LANG', 'en');
with the filename you used previously.Many thanks to the authors for their great work
Improvements:
- set default empty value for passwords in UPDATE FORMS
Bug Fix:
- solve CREATE/UPDATE forms generation with custom validation
- solve READ LISTS generation with advanced filders
- solve image path in admin when the field thumbs are not enabled
- remove password validation in UPDATE FORMS if posted value is empty
- correct select values count in generator CREATE/UPDATE forms with custom values
- solve error 500 when adding new users
New Features:
- add an uninstallation process
- add a login module for the generator on the production server
- primary key management in admin forms
Improvements:
- remove the "select database" form in generator & auto select the correct database
- add warnings for non-standard tables & field names (hyphenated)
- improve password fields management in CREATE/UPDATE forms:
better password encryption with Secure class
password are now automatically optional on update forms with an helper text: "Leave blank to keep the current password"
- turn fileuploader debug on for CREATE/UPDATE forms
- improve documentation
- improve auto-validation detection according to forms & database field types
Bug Fix:
- revert Twig template engine to version 1.35.4 to preserve PHP < 7.0 compatibility
- regenerate css & js combined plugin files for CREATE/UPDATE forms when the forms are edited with the generator
- fix generator which failed to validate when custom validators were selected while generating the CREATE/UPDATE forms
- fix password encryption when changes are made in CREATE/UPDATE users table
Improvements:
- add user-conf file to avoid breaking user custom settings with updates
- move the install folder outside the generator folder.
- improve the updater script
- improve url & path management
Bug Fix:
- fix server issues in some special configurations
Warning: if your authentification module is not enabled, after the update open php-crud-generator/conf/admin-lock.php
and set ADMIN_LOCKED
to false
.
Improvements:
- move ADMIN_LOCKED and ADMIN_LOGO to separate files for easier updates
Bug Fix:
- fix several minor bugs
Bug Fix:
- fix authentification module installation (wrong users filters)
New Features:
- add File uploader to Generator + Admin panel
- add version check & auto-updater
Improvements:
- update dependencies & move to vendor with Composer
- improve ROOT path analysis
Bug Fix:
- correct date & time validation
- correct value/display inversion with live-edit custom select
First Release