coccoto/select-db

v1.0.0 2022-01-03 12:35 UTC

This package is auto-updated.

Last update: 2025-04-29 17:54:10 UTC


README

A little support for database operations.

Prerequisites

  • PHP 7.4

Installation

$ composer require coccoto/select-db

Usage

Connect to the database.

  • index.php
require_once 'vendor/autoload.php';

$connInfo = [
    'host' => '',
    'dbname' => '',
    'user' => '',
    'pass' => '',
];

coccoto\selectDb\CRUD::push($connInfo);

Example

License

MIT License