A lightweight, aesthetic, and secure database management tool contained within a single PHP file. Designed as a modern alternative to Adminer, featuring a beautiful Glassmorphism UI, Card View for data, and a built-in security Gatekeeper.
Created with <3 by Giovanni.
- 🎨 Stunning UI: Dark mode with Glassmorphism effects, neon accents, and smooth animations.
- 📦 Single File: No installation required. Just upload one
.phpfile and go. - 📱 Card View Layout: Data is displayed in modern, responsive cards instead of boring tables.
- 🔒 Gatekeeper Security: Double-layer security. First, a site-wide password (MD5 hashed), then Database credentials.
- 🌍 Multi-Language: Native support for English (EN) and Romanian (RO).
- ⚡ Smart Badges: Auto-detects status fields (active, pending, paid) and applies color-coded badges.
- 🛡️ Secure: No raw passwords stored in code (MD5 Hashing used).
| Secure Login | Dashboard | Card View |
|---|---|---|
![]() |
![]() |
![]() |
- Download the
easyview.phpfile. - Upload it to your web server (e.g., inside
public_html). - Configure the security password (see below).
- Access via browser:
yoursite.com/easyview.php.
Open the file and edit the top configuration section:
// --- 1. CONFIGURATION ---
// Default password is 'admin'.
// Generate your own MD5 hash online and replace it here!
$SITE_PASSWORD_HASH = '21232f297a57a5a743894a0e4a801fc3';
$ROWS_LIMIT = 300; // Max items per page

