« Back to History
index.php
|
20260920_164915.php
Initial Domain Snapshot
Copy Code
<?php require_once __DIR__ . '/../partials/header.php'; require_once __DIR__ . '/../core/db.php'; /* Fallback data — agar DB empty ho */ $fallback = [ 'Completed' => [ 'Project Overview page finalized', 'Module Management documentation', 'Decision Log Entry DL-001 (foundation lock)', 'Website folder & navigation structure', 'Modules list page', 'Single module view page', 'Decision Log UI (list + view)', 'AI Rules page', ], 'In Progress' => [ 'Database integration (read-only)', ], 'Pending' => [ 'Owner-only edit screens', 'Permissions & audit trail', 'First real business module (ERP / Production)', ], 'Blocked' => [] ]; /* Fetch from DB */ $rows = $pdo->query(" SELECT category, item_text FROM progress_board ORDER BY id ASC ")->fetchAll(); /* Normalize DB data into buckets */ $data = [ 'Completed' => [], 'In Progress' => [], 'Pending' => [], 'Blocked' => [], ]; if ($rows) { foreach ($rows as $r) { $cat = $r['category']; if (isset($data[$cat])) { $data[$cat][] = $r['item_text']; } } } else { $data = $fallback; } ?> <h1>Project Progress Board</h1> <p class="intro"> Yeh board project ki <strong>current reality</strong> dikhata hai. Sirf wahi cheezein yahan hoti hain jo sach me complete / pending / blocked hain. </p> <section class="card highlight"> <h2>✅ Completed</h2> <ul> <?php foreach ($data['Completed'] as $i): ?> <li><?= htmlspecialchars($i) ?></li> <?php endforeach; ?> </ul> </section> <section class="card"> <h2>🔄 In Progress</h2> <ul> <?php foreach ($data['In Progress'] as $i): ?> <li><?= htmlspecialchars($i) ?></li> <?php endforeach; ?> </ul> </section> <section class="card"> <h2>⏳ Pending</h2> <ul> <?php foreach ($data['Pending'] as $i): ?> <li><?= htmlspecialchars($i) ?></li> <?php endforeach; ?> </ul> </section> <?php if (!empty($data['Blocked'])): ?> <section class="card"> <h2>❌ Blocked</h2> <ul> <?php foreach ($data['Blocked'] as $i): ?> <li><?= htmlspecialchars($i) ?></li> <?php endforeach; ?> </ul> </section> <?php endif; ?> <section class="card"> <h2>Rules for Updating This Board</h2> <ul> <li>Completed sirf tab add ho jab kaam actually done ho</li> <li>In Progress me max 2–3 items rakho</li> <li>Blocked ka matlab hai: bina decision aage nahi badhenge</li> <li>Board ko fake progress ke liye use mat karo</li> </ul> </section> <?php require_once __DIR__ . '/../partials/footer.php';