artemmelnik/devstart-db

There is no license information available for the latest version (0.2) of this package.

0.2 2018-08-20 13:05 UTC

This package is not auto-updated.

Last update: 2024-05-07 17:53:07 UTC


README

  1. Install
 composer require artemmelnik/devstart-db
  1. Use

Select

 <?php
 
 require_once __DIR__ . '/vendor/autoload.php';
 
 use DevStart\Database;
 
 $db = new Database([
    'host' => 'localhost',
    'dbname' => 'devstart_db',
    'user' => 'root',
    'password' => 'root',
    'charset' => 'utf8'
 ]);
 
 $query = $db->query('SELECT * FROM posts ORDER BY id DESC');
 
 $db->closeConnection();
 

###Insert

   <?php
   
   $insert = $db->query("INSERT INTO posts (title, content) VALUES (:title, :content)", [
       'title' => 'Hello World',
       'content' => 'Wrire content'
   ]);