32 lines
1016 B
PHP
Executable File
32 lines
1016 B
PHP
Executable File
<?php
|
|
require_once __DIR__ . '/../../connect.php';
|
|
|
|
// استلام المتغيرات
|
|
$passengerID = filterRequest("passengerID");
|
|
$driverID = filterRequest("driverID");
|
|
$rideID = filterRequest("rideID");
|
|
$tipAmount = filterRequest("tipAmount");
|
|
|
|
// تحقق من صحة قيمة البقشيش
|
|
if (!is_numeric($tipAmount) || $tipAmount < 0 || $tipAmount > 99999999.99) {
|
|
jsonError("Invalid tip amount.");
|
|
exit();
|
|
}
|
|
|
|
// إدراج بيانات البقشيش
|
|
$sql = "INSERT INTO `tips` (`driverID`, `passengerID`, `rideID`, `tipAmount`)
|
|
VALUES (:driverID, :passengerID, :rideID, :tipAmount)";
|
|
|
|
$stmt = $con->prepare($sql);
|
|
$stmt->bindParam(':driverID', $driverID);
|
|
$stmt->bindParam(':passengerID', $passengerID);
|
|
$stmt->bindParam(':rideID', $rideID);
|
|
$stmt->bindParam(':tipAmount', $tipAmount);
|
|
|
|
// تنفيذ العملية
|
|
if ($stmt->execute() && $stmt->rowCount() > 0) {
|
|
jsonSuccess(null, "Tip inserted successfully");
|
|
} else {
|
|
jsonError("Failed to save tip information");
|
|
}
|
|
?>
|