Built for the projects where SQLite is the right call — local tools, embedded data, read-only datasets, or any scenario where standing up a database server is more overhead than the project warrants.
Drop simple.php next to your .db file, open it in a browser, and you have a full database admin interface. No credentials, no server, no configuration — SQLite support is built into PHP.
Browse any table, insert and edit records, run raw SQL queries, and export results to CSV or JSON — all from a single file that disappears when you no longer need it.
Everything you need to manage a SQLite database
Full table CRUD
Browse, insert, edit, and delete records across every table in your SQLite database.
File-based connection
Configure a path to any .db or .sqlite file — no server, no credentials required.
Schema-aware
Reads column types, NOT NULL constraints, defaults, and foreign keys via PRAGMA statements.
Per-column rules
Customize labels, hints, readonly fields, and hidden columns via config.php.
CSRF protection
All write operations are protected by token-based CSRF validation.
Zero extra dependencies
SQLite support is built into PHP. No extensions to install, no Composer.
Up in under a minute
Download
Grab the zip or the bare PHP file below.
Upload
Drop simple.php anywhere on a PHP 8.2+ server with your .db file nearby.
Open
Open it in a browser — no credentials needed. Select or drop your SQLite file and you’re in.
Check your inbox — your download link is on the way.