نسخة كاملة من مستودع سيرو عند 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>
32 lines
985 B
PHP
32 lines
985 B
PHP
<?php
|
|
require_once __DIR__ . '/../../connect.php';
|
|
|
|
try {
|
|
// Retrieve and validate the 'id' parameter
|
|
$id = filterRequest('id');
|
|
if ($id === null || $id === '') {
|
|
throw new Exception("Missing required parameter: id");
|
|
}
|
|
|
|
// Prepare the SQL query to delete the record
|
|
$sql = "DELETE FROM `waitingRides` WHERE `id` = :id";
|
|
|
|
// Prepare and execute the statement
|
|
$stmt = $con->prepare($sql);
|
|
$stmt->bindParam(':id', $id, PDO::PARAM_INT);
|
|
$stmt->execute();
|
|
|
|
// Check the result and print the appropriate message
|
|
if ($stmt->rowCount() > 0) {
|
|
jsonSuccess(null, "Record with ID $id deleted successfully.");
|
|
} else {
|
|
jsonError("No record found with ID $id.");
|
|
}
|
|
} catch (PDOException $e) {
|
|
error_log("[deleteAvailableRide/PDO] " . $e->getMessage());
|
|
jsonError("Database error");
|
|
} catch (Exception $e) {
|
|
error_log("[deleteAvailableRide] " . $e->getMessage());
|
|
jsonError("Error deleting ride");
|
|
}
|
|
?>
|