source: Admin Actions/IssueFine.php

main
Last change on this file was 75f74d9, checked in by Vlado 222039 <vlado.popovski@…>, 6 weeks ago

Initial commit: Adding Book Tracker code

  • Property mode set to 100644
File size: 1008 bytes
Line 
1<?php
2
3require_once '../connect.php';
4
5header('Content-Type: application/json');
6
7
8// Issue fine
9if ($_SERVER['REQUEST_METHOD'] == 'POST') {
10 // Get data from the form
11 $loanid = $_POST['loan-id'];
12 $fineamount = $_POST['fine-amount'];
13 $finedate = date('Y-m-d');
14 $status = 'Unpaid';
15
16 try {
17 $query = "
18 INSERT INTO fine (fineamount, finedate, status, loanid)
19 VALUES (:fineamount, :finedate, :status, :loanid)
20 ";
21
22 $stmt = $conn->prepare($query);
23 $stmt->bindParam(':fineamount', $fineamount);
24 $stmt->bindParam(':finedate', $finedate);
25 $stmt->bindParam(':status', $status);
26 $stmt->bindParam(':loanid', $loanid);
27
28 // Execute the query
29 $stmt->execute();
30
31 echo json_encode(['success' => true, 'message' => 'Fine issued successfully!']);
32 } catch (PDOException $e) {
33 echo json_encode(['success' => false, 'message' => 'Error: ' . $e->getMessage()]);
34 }
35}
36?>
Note: See TracBrowser for help on using the repository browser.