File | Date | Author | Commit |
---|---|---|---|
LICENSE | 2021-06-18 |
![]() |
[7b8dfe] Initial commit |
README.md | 2022-01-27 |
![]() |
[7e114d] Update README.md |
mysqly.php | 2022-01-27 |
![]() |
[e3b23f] |
mysqly.png | 2022-01-26 |
![]() |
[7ac53b] Add files via upload |
test_performance.php | 2022-01-27 |
![]() |
[c91431] proto performance testing script |
tests.php | 2022-01-27 |
![]() |
[5cbd42] auto table/field creation |
Mysqly is a full-featured opensource small-overhead PHP data framework for Mysql built for fast and efficient development.
wget https://mysqly.com/mysqly.php
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 ↓