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:
1.2 KB
|
Line | |
---|
1 | <?php
|
---|
2 | require_once '../connect.php';
|
---|
3 |
|
---|
4 | if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
---|
5 |
|
---|
6 | try {
|
---|
7 | $conn->beginTransaction();
|
---|
8 |
|
---|
9 | $bookId = $_POST['bookId'];
|
---|
10 |
|
---|
11 | $getImageQuery = "SELECT coverimage FROM book WHERE bookid = :bookId";
|
---|
12 | $imageStmt = $conn->prepare($getImageQuery);
|
---|
13 | $imageStmt->execute([':bookId' => $bookId]);
|
---|
14 | $imageResult = $imageStmt->fetch(PDO::FETCH_ASSOC);
|
---|
15 |
|
---|
16 | $query = "CALL delete_book(:bookId)";
|
---|
17 | $stmt = $conn->prepare($query);
|
---|
18 | $stmt->execute([':bookId' => $bookId]);
|
---|
19 |
|
---|
20 | if ($imageResult && $imageResult['coverimage']) {
|
---|
21 | $imagePath = 'BookImages/' . $imageResult['coverimage'];
|
---|
22 | if (file_exists($imagePath)) {
|
---|
23 | unlink($imagePath);
|
---|
24 | }
|
---|
25 | }
|
---|
26 |
|
---|
27 | $conn->commit();
|
---|
28 |
|
---|
29 | echo json_encode(['success' => true]);
|
---|
30 |
|
---|
31 | } catch(PDOException $e) {
|
---|
32 | if ($conn->inTransaction()) {
|
---|
33 | $conn->rollBack();
|
---|
34 | }
|
---|
35 | echo json_encode(['success' => false, 'error' => $e->getMessage()]);
|
---|
36 | } catch(Exception $e) {
|
---|
37 | if ($conn->inTransaction()) {
|
---|
38 | $conn->rollBack();
|
---|
39 | }
|
---|
40 | echo json_encode(['success' => false, 'error' => $e->getMessage()]);
|
---|
41 | }
|
---|
42 | }
|
---|
43 |
|
---|
44 | ?> |
---|
Note:
See
TracBrowser
for help on using the repository browser.