Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 906 Bytes

README.md

File metadata and controls

39 lines (24 loc) · 906 Bytes

Medoo

The Lightest PHP database framework to accelerate development

Main Features

  • Lightweight - Only 8KB, one file included.

  • Easy - Extremely easy to learn and use, friendly construction.

  • Powerful - Support various common SQL queries.

  • Compatible - Support various SQL database, including MySQL, MSSQL, SQLite and more.

  • Security - Prevent SQL injection.

  • Free - Under MIT license, you can use it anywhere if you want.

Get Started

// 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']
]);

Links