mysqly icon indicating copy to clipboard operation
mysqly copied to clipboard

Full-featured opensource small-overhead PHP data framework for Mysql built for fast and efficient development

Mysqly is a full-featured opensource small-overhead PHP data framework for Mysql built for fast and efficient development.

Install

wget https://mysqly.com/mysqly.php

Usage example

require 'mysqly.php'; # include library (single file)
mysqly::auth('user', 'pwd', 'db', '127.0.0.1'); # connect to Mysql server

// Dynamic methods for table names
$users = mysqly::users(['age' => 25]); # SELECT * FROM users WHERE age = 25
$user = mysqly::users_(6); # SELECT * FROM users WHERE id = 6 LIMIT 1

// And many more features ↓

All features & documentation

Download mysqly