Skip to content
/ Medoo Public
forked from catfan/Medoo

The Lightest PHP database framework to accelerate development

License

Notifications You must be signed in to change notification settings

jococo/Medoo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

cd039c7 · Dec 24, 2013

History

53 Commits
Mar 30, 2013
Mar 30, 2013
Mar 30, 2013
Dec 24, 2013
Jun 30, 2013
Dec 24, 2013

Repository files navigation

Medoo

The Lightest PHP database framework to accelerate development

Main Features

  • Lightweight - Only 10KB with one file.

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

  • Powerful - Support various common SQL queries.

  • Compatible - Support various SQL database, including MySQL, MSSQL, SQLite, MariaDB 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' => '[email protected]',
    'age' => 25,
    'lang' => ['en', 'fr', 'jp', 'cn']
]);

// Or initialize via independent configuration
$database = new medoo([
    'database_type' => 'mysql',
    'database_name' => 'name',
    'server' => 'localhost',
    'username' => 'your_username',
    'password' => 'your_password',
]);

Links

About

The Lightest PHP database framework to accelerate development

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%