Skip to content

Instantly share code, notes, and snippets.

View Mashiane's full-sized avatar

Mashy Mashiane

View GitHub Profile
@Mashiane
Mashiane / SQLite-PHP-quickstart.php
Created May 23, 2019 08:27 — forked from bladeSk/SQLite-PHP-quickstart.php
SQLite3 PHP Quickstart Tutorial
<?php
// This file walks you through the most common features of PHP's SQLite3 API.
// The code is runnable in its entirety and results in an `analytics.sqlite` file.
// Create a new database, if the file doesn't exist and open it for reading/writing.
// The extension of the file is arbitrary.
$db = new SQLite3('analytics.sqlite', SQLITE3_OPEN_CREATE | SQLITE3_OPEN_READWRITE);