نسخة كاملة من مستودع سيرو عند ecfe7568 لتكون أساس تطبيق «انطلق». نُسخ المتعقَّب في git فقط (12,509 ملفاً / 302 م.ب) بـ git archive، لا `cp -r` — فاستُثنيت تلقائياً مخلفات البناء (build · node_modules · .dart_tool · .gradle · Pods ≈ 10.7 غ.ب) وكل ما يستثنيه .gitignore. هذا الكوميت **بلا أي تعديل عمداً** حتى يكون كل ما يليه فرقاً مقروءاً مقابل سيرو الأصلي. سيرو نفسه لم يُمسّ. ⚠️ لا يبني بعد: `.env` و`lib/env/env.g.dart` غير متعقَّبين في سيرو (وهذا صحيح — أسرار لكل مستأجر). كل تطبيق فلاتر هنا يحتاج .env خاصاً بانطلق ثم توليد env.g.dart عبر build_runner. لا تُنسخ أسرار سيرو. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
29 lines
687 B
PHP
29 lines
687 B
PHP
<?php
|
|
require_once __DIR__ . '/../../connect.php';
|
|
|
|
// Prepare the SQL query to select all records from the employee table with a limit of 10
|
|
$sql = "SELECT
|
|
*
|
|
FROM
|
|
`employee` e
|
|
ORDER BY
|
|
e.created_at
|
|
DESC
|
|
";
|
|
|
|
// Prepare and execute the statement
|
|
$stmt = $con->prepare($sql);
|
|
$stmt->execute();
|
|
|
|
// Fetch all records as an associative array
|
|
$employee_data = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
// Check if any records were retrieved
|
|
if ($employee_data) {
|
|
// If records were found, print the data as JSON
|
|
jsonSuccess($data = $employee_data);
|
|
} else {
|
|
// If no records were found, print a failure message
|
|
jsonError($message = "No employee records found");
|
|
}
|
|
?>
|