The Lightest PHP database framework to accelerate development
Only 7.8KB, one file included.
Extremely easy to learn and use, friendly construction.
Support various common SQL queries.
Support various SQL database, including MySQL, MSSQL, SQLite and more.
Prevent SQL injection.
Under MIT license, you can use it anywhere if you want.
// Include Medoo
require_once 'medoo.php';
// Initialize
$database = new medoo('my_database');
// Enjoy
$database->insert('account', [
'user_name' => 'foo'
'email' => 'foo@bar.com',
'age' => 25,
'lang' => ['en', 'fr', 'jp', 'cn']
]);
Official website: http://medoo.in
Documentation: http://medoo.in/doc