Skip to content

Instantly share code, notes, and snippets.

View abumaryam's full-sized avatar

Dian Prawira abumaryam

  • Puredu Software Development
  • Pontianak, West Borneo, Indonesia
View GitHub Profile
@abumaryam
abumaryam / php-pdo-mysql-crud.md
Created June 3, 2018 14:36 — forked from odan/php-pdo-mysql-crud.md
Basic CRUD operations with PDO and MySQL

Basic CRUD operations with PDO

CRUD = Create, Read, Update, Delete

Open a database connection

$host = '127.0.0.1';
$dbname = 'test';
$username = 'root';