first commit
This commit is contained in:
32
backend/ride/tips/add.php
Executable file
32
backend/ride/tips/add.php
Executable file
@@ -0,0 +1,32 @@
|
||||
<?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");
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user