Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/subzane/mysqlhandler
MySql Wrapper for PHP
https://github.com/subzane/mysqlhandler
Last synced: 26 days ago
JSON representation
MySql Wrapper for PHP
- Host: GitHub
- URL: https://github.com/subzane/mysqlhandler
- Owner: SubZane
- Created: 2012-12-15T23:27:05.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-06-04T11:34:25.000Z (over 11 years ago)
- Last Synced: 2023-04-03T12:44:16.280Z (almost 2 years ago)
- Language: PHP
- Size: 113 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MySQLHandler 1.1
=============================A complete MySQL package for PHP. Includes all MySQL methods you need for your PHP project.
* Connection handling
* Results available as XML, dictionary or default Result Set
* Error handling
* Full interface for optional custom extensions
## Changelog
### Version 1.1
* Minor bugfixes and example### Version 1.0
* Initial release
## Usage
Edit the configuration in `Database.class.php````php
private $server = 'localhost';
private $database = 'test';
private $username = 'user';
private $password = 'password';
private $use_permanent_connection = false;
private $xml_encoding = 'ISO-8859-1';
```
See example in `example.php` on how to use the methods.