1. Create Data (create())
Adds a new item to a specified entity. A unique id is automatically generated. By default, new items are added to the beginning of the array.
Example:
$newUser = [
"name" => "Carol Danvers",
"email" => "carol@example.com",
"age" => 34,
"status" => "active"
];
$createdUser = $db->create('users', $newUser);
echo "Created user with ID: " . $createdUser['id'];