Composer require
$ composer require catfan/medoo
Update
$ composer update
// If you installed via composer, just use this code to require autoloader on the top of your projects.
require 'vendor/autoload.php';
// Using Medoo namespace
use Medoo\Medoo;
// Initialize
$database = new Medoo([
'database_type' => 'mysql',
'database_name' => 'name',
'server' => 'localhost',
'username' => 'your_username',
'password' => 'your_password'
]);
// Enjoy
$database->insert('account', [
'user_name' => 'foo',
'email' => 'foo@bar.com'
]);
$data = $database->select('account', [
'user_name',
'email'
], [
'user_id' => 50
]);
echo json_encode($data);
// [
// {
// "user_name" : "foo",
// "email" : "foo@bar.com"
// }
// ]
Medoo is an open-source project under MIT license and will always be free to use. However, the project needs some funding every month to sustain. Any sponsorship for the project will be greatly helpful for us to build Medoo better toward all PHP developers in the world, and we will put your company logo on homepage and about page as appreciation.
Love Medoo?