# php-package-mysql-driver **Repository Path**: wupz/php-package-mysql-driver ## Basic Information - **Project Name**: php-package-mysql-driver - **Description**: Mysql Database PHP Library - **Primary Language**: PHP - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 7 - **Forks**: 0 - **Created**: 2020-05-12 - **Last Updated**: 2025-05-27 ## Categories & Tags **Categories**: database-dev **Tags**: None ## README ### Mysql Database PHP Library - command ``` $: composer require wupz/database ``` - example ```php include 'path/vendor/autoload.php'; $db = new wuweiit\Database(['host' => '127.0.0.1', 'database' => 'example', 'charset' => 'utf8', 'user' => 'root', 'password' => 'example', 'prefix' => 'dp_']); $users = $db->table('users')->get(); ```