A production-ready, modular starter kit with secure PDO, CSRF protection, standardized API responses, and a full UI component library — all out of the box.
// 1. Validate CSRF token if (!func_ValidateCSRFToken($token)) { func_GenerateResponse(false, [], 403, 'Invalid CSRF token.'); } // 2. Pull data with prepared statements $result = func_PullData( 'users', ['role' => 'admin'], 'created_at DESC', 10 ); // 3. Return standardized JSON func_GenerateResponse( $result['success'], $result['data'], $result['meta']['code'] );
A curated, minimal set of tools and patterns that solve the 80% of boilerplate work in every PHP project.
CSRF tokens, PDO prepared statements, bcrypt hashing, session hardening, and XSS escaping built in.
Four clean functions (func_InsertData, func_UpdateData, func_PullData, func_DeleteData) with consistent return shapes.
Every endpoint returns the same JSON envelope: { success, data, meta }. Frontend always knows what to expect.
Responsive sidebar + top bar + main content shell. Collapses gracefully to mobile offcanvas.
DataTables, Chart.js, ApexCharts, Select2, Flatpickr, SweetAlert2, and Bootstrap 5 native components — all wired up.
App.request() auto-injects CSRF, parses JSON responses, surfaces errors as SweetAlert2 modals, and handles spinners.
Clone the repo, configure your database, and start building in minutes.
Explore Dashboard