kayega/easiersql

This library makes your sql queries easier

dev-main 2022-06-27 21:44 UTC

This package is auto-updated.

Last update: 2024-05-28 01:53:57 UTC


README

1) Installition

$ composer require kayega/easiersql:dev-main

then use the below code in your php file

use KAYEGA\EasySql;

require __DIR__ . "/vendor/kayega/easiersql/src/EasySql.php";
require __DIR__ . "/vendor/autoload.php";

$sql = new EasySql("localhost", "root", "", "test");
if ($sql) {
    echo "Connection successfully!";
}