Menu

Tree [e3b23f] main /
 History

HTTPS access


File Date Author Commit
 LICENSE 2021-06-18 Mr Crypster Mr Crypster [7b8dfe] Initial commit
 README.md 2022-01-27 Mr Crypster Mr Crypster [7e114d] Update README.md
 mysqly.php 2022-01-27 mrcrypster mrcrypster [e3b23f]
 mysqly.png 2022-01-26 Mr Crypster Mr Crypster [7ac53b] Add files via upload
 test_performance.php 2022-01-27 mrcrypster mrcrypster [c91431] proto performance testing script
 tests.php 2022-01-27 mrcrypster mrcrypster [5cbd42] auto table/field creation

Read Me

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

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.