You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to express my gratitude for providing us with this excellent grid. It has proven to be extremely user-friendly and efficient to work with. Great job on creating such a useful tool!
I must admit that I'm not a professional programmer, and my experience mostly revolves around small projects for work or immediate necessities. Occasionally, I encounter more complex projects, but they are rare for me. Due to my limited experience, it's possible that the solution to my current problem might be right in front of me, but I could be overlooking it.
With that in mind, I apologize if my question seems obvious or I fail to recognize a straightforward solution. I greatly appreciate your patience and support as I seek to resolve my issue. Thank you for your understanding.
I'm having problems saving my updates or adding new records in the database.
Here is the grid code:
?php
require_once('includes/load.php');
// Checking what level user has permission to view this page
page_require_level(2);
// Header HTML
include_once('layouts/header.php');
// Fetch data from the database table (limit to 40 records)
$db = new MySqli_DB();
$sql = "SELECT * FROM commodity";
$result = $db->query($sql);
$records = $db->while_loop($result);
Hello Team,
I want to express my gratitude for providing us with this excellent grid. It has proven to be extremely user-friendly and efficient to work with. Great job on creating such a useful tool!
I must admit that I'm not a professional programmer, and my experience mostly revolves around small projects for work or immediate necessities. Occasionally, I encounter more complex projects, but they are rare for me. Due to my limited experience, it's possible that the solution to my current problem might be right in front of me, but I could be overlooking it.
With that in mind, I apologize if my question seems obvious or I fail to recognize a straightforward solution. I greatly appreciate your patience and support as I seek to resolve my issue. Thank you for your understanding.
I'm having problems saving my updates or adding new records in the database.
Here is the grid code:
?php
require_once('includes/load.php');
// Checking what level user has permission to view this page
page_require_level(2);
// Header HTML
include_once('layouts/header.php');
// Fetch data from the database table (limit to 40 records)
$db = new MySqli_DB();
$sql = "SELECT * FROM commodity";
$result = $db->query($sql);
$records = $db->while_loop($result);
?
?php
// Enable error reporting
error_reporting(E_ALL);
// Display errors on the screen
<title>Commodity</title> <style> /* Add any custom styles for the table and scroll container here */ .jsgrid { width: 100%; }ini_set('display_errors', 1);
?
});
// Your PHP records data
var records = ;
ini_set('display_errors', 'On');
error_reporting(E_ALL);
try {
require_once('includes/load.php');
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
The text was updated successfully, but these errors were encountered: