The Bootstrap Admin Forms are built with PHP Form Builder. They are located in the admin/inc/forms/ folder.
PHP Form Builder is included in PHP CRUD Generator's package.
With all its functionnalities and plugins.
The MySQL queries sent to your database are built with PHP Form Builder's MySQL wrapper class.
Documentation and sample codes are available here on PHP Form Builder's website.
All the Admin forms are located in the same folder in admin/inc/forms/.
Each table uses 3 forms:
where "table" is the sanitized name of your table.
All the actions (database recordings) are done in the same files after validation.
(you see the ugly alert message Error while recording after posting the form)
In development mode (on localhost), you should already see the error details with the SQL query
In production mode (on production server)
Find the following block in your form file:
if (ENVIRONMENT == 'development') {
$msg_content .= '<br>' . $e->getMessage() . '<br>' . $db->getLastSql();
}
and replace ==
with !==
Then post your form again and the SQL query will be shown.
Once you've posted your query, copy/paste it directly into your database manager (PhpMyAdmin or similar).
You'll see in return if a field has an invalid value, or if there's some other problem in the query.
If the query works in your database manager but not in PHPCG, there can be 2 causes:
To show the MySQL query sent by a form you just have to add the following code to the form
just after the code where the query is sent:
echo $db->getLastSql();
To edit the Bootstrap Admin Forms you must beforehand:
The Bootstrap Admin Panel
Files & logic
Navbar
Content
Debug