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: 2025-03-25 21:52:27 UTC
README
- Install
composer require artemmelnik/devstart-db
- 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' ]);