An open API service indexing awesome lists of open source software.

https://github.com/znframework/package-database

ZN Framework Database Package
https://github.com/znframework/package-database

Last synced: 6 months ago
JSON representation

ZN Framework Database Package

Awesome Lists containing this project

README

        










ZN Framework Database Package



Follow the steps below for installation and use.

Installation



You only need to run the following code for the installation.

```
composer require znframework/package-database
```

Documentation



Click for documentation of your library.

Example Usage



Basic level usage is shown below.

```php
'mysqli',
'host' => 'localhost',
'database' => 'test',
'user' => 'root',
'password' => '',
'prefix' => ''
]);

$persons = DB::persons();

Output::display($persons->result());
```