v1.0 · 4 Tools · No build step

Bridge your browser to your
production database.

A self-hosted PHP tool suite. Import and export MySQL databases, generate hashes, create QR codes, and work with PDFs — all behind a single password gate. Drop one folder on your server and you're done.

Download dbmanager.zip Learn more
yourdomain.com/dbmanager/db.php
production_db
Connected
Host
db.yourhost.com
Database
production_db
User
admin
Password
••••••••••
Import dump
Export
Importing backup_2026.sql72% · 36,420 rows
PHP 7.4+ / 8.x MySQL & MariaDB ~80 KB single file MIT-style usage
Our tools

A growing suite of server-side utilities.

Everything is gated behind the same password, runs without a build step, and drops straight onto shared hosting.

DB Manager

Import and export MySQL databases through your browser. Handles .sql, .gz, and .csv files with live progress.

Open DB Manager →

Hash Generator

Generate bcrypt, SHA-256, SHA-1, and MD5 hashes in one place. Bot-protected via reCAPTCHA v3.

Open Hash Generator →

QR Code Generator

Create QR codes for URLs, text, Wi-Fi, and email. Download as PNG or SVG with custom sizes.

Open QR Generator →

PDF Tools

Merge, split, compress, convert, rotate and watermark PDFs. Runs entirely in your browser — nothing is uploaded.

Open PDF Tools →
What it does

Everything you need to move data.

Push a local dump into production — or pull production back to dev — without firing up MySQL Workbench.

Import dumps

Upload .sql, .gz, or .csv files and stream them straight into your database.

Export anything

Dump full schema, structure-only, or selected tables. Download or save server-side.

Live progress

Real-time line counters during long imports so you know what's happening.

Session-scoped creds

Credentials live in a PHP session only — clear them in one click when you're done.

Auto-fix issues

Handles oversized rows, line endings, and SQL mode quirks so old dumps still load.

Zero dependencies

One PHP file. No Composer, no Node, no npm. Drop it on shared hosting and it works.

How it works

Four steps from download to deployed.

No setup wizard, no env files. The same flow whether you're on XAMPP, cPanel, or a VPS.

1

Download & unzip

Grab the ZIP and extract it. You'll have db.php, a favicon, and the font folder.

dbmanager/
├── db.php
├── favicon.png
└── font/
2

Upload to server

Place the folder under public_html/ on cPanel. No build step, no install.

public_html/
dbmanager/db.php
3

Open in browser

Navigate to the file. Enter your remote MySQL host, database, user, and password.

yourdomain.com/
dbmanager/db.php
4

Import or export

Pick a .sql/.gz/.csv dump and import it — or hit export to pull a backup.

Import → streams
Export → .sql dump
Setup & requirements

Quick checklist before you go live.

A few server-side knobs to raise so large dumps don't choke.

Server requirements

  • PHP 7.4+ or 8.x with mysqli extension
  • MySQL 5.7+ or MariaDB 10.3+
  • Outbound port 3306 for remote DB
  • Write permission on dbmanager/ folder
  • HTTPS strongly recommended

Recommended PHP limits

  • upload_max_filesize = 256M
  • post_max_size = 256M
  • memory_limit = 512M
  • max_execution_time = 0
  • max_input_time = 0
deploy dbmanager
$ unzip dbmanager.zip -d ./
Archive: extracted to ./dbmanager
$ scp -r dbmanager/ user@host:~/public_html/
db.php 100% 80KB 1.2MB/s
$ open https://yourdomain.com/dbmanager/db.php
✓ ready — enter credentials in the browser

Grab it and ship.

One ZIP, password-protected. Updates are drop-in — just replace db.php.

Download dbmanager.zip
dbmanager.zip ~80 KB password protected
How to use

Quick guides for every tool.

No manuals needed. Pick a tool, sign in, and get to work in seconds.

DB Manager

  • Open db.php in your browser
  • Enter the password to sign in
  • Input your MySQL host, database, user, and password
  • Use Import to upload a dump, or Export to download one

Hash Generator

  • Open sha1.php in your browser
  • Enter your text in the input field
  • Complete the reCAPTCHA bot check
  • Copy bcrypt, SHA-256, SHA-1, or MD5 results instantly

QR Code Generator

  • Open qr-generator.php in your browser
  • Pick a tab: URL, Text, Wi-Fi, or Email
  • Fill the fields and choose size & error correction
  • Download your QR code as PNG or SVG

Shared password gate

  • All tools use the same password: dbmanager
  • Failed attempts are rate-limited after 5 tries
  • Click Logout in any tool to clear your session
  • Credentials are stored in a PHP session only