-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathviewPizza.php
95 lines (88 loc) · 4.58 KB
/
viewPizza.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&family=Ubuntu&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="fooditem.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<title id=title>Food</title>
<link rel="icon" href="images/icon.png">
<style>
#cont {
min-height : 578px;
}
</style>
</head>
<body>
<?php include 'partials/_dbconnect.php';?>
<?php require 'partials/_nav.php' ?>
<div class="container my-4" id="cont">
<div class="row jumbotron">
<?php
$foodId = $_GET['foodid'];
$sql = "SELECT * FROM `food` WHERE foodId = $foodId";
$result = mysqli_query($conn, $sql);
$row = mysqli_fetch_assoc($result);
$foodName = $row['foodName'];
$foodPrice = $row['foodPrice'];
$foodDesc = $row['foodDesc'];
$foodCategorieId = $row['foodCategorieId'];
?>
<script> document.getElementById("title").innerHTML = "<?php echo $foodName; ?>"; </script>
<?php
echo '<div class="col-md-4">
<img src="img/pizza-'.$foodId. '.jpg" width="249px" height="262px">
</div>
<div class="col-md-8">
<h3>' . $foodName . '</h3>
<h5 style="color: #ff0000">Rs. '.$foodPrice. '/-</h5>
<p class="mb-0">' .$foodDesc .'</p>';
if($loggedin){
$quaSql = "SELECT `itemQuantity` FROM `viewcart` WHERE foodId = '$foodId' AND `userId`='$userId'";
$quaresult = mysqli_query($conn, $quaSql);
$quaExistRows = mysqli_num_rows($quaresult);
if($quaExistRows == 0) {
echo '<form action="partials/_manageCart.php" method="POST">
<input type="hidden" name="itemId" value="'.$foodId. '">
<button type="submit" name="addToCart" class="btn btn-food btn-dark btn-lg">Add to Cart</button>';
}else {
echo '<a href="viewCart.php"><button class="btn btn-food btn-dark btn-lg">Go to Cart</button></a>';
}
}
else{
echo '<button class="btn btn-food btn-dark btn-lg" data-toggle="modal" data-target="#loginModal">Add to Cart</button>';
}
echo '</form>
<h6 class="my-1"> View </h6>
<div>
<a href="viewPizzaList.php?catid=' . $foodCategorieId . '" class="active" style="color: #FFA45B;">
<i class="fas fa-shopping-basket fa-2x"></i>
<span>All Food</span>
</a>
</div>
<div>
<a href="index.php" class="active text-dark">
<i class="fas fa-box-open fa-2x"></i>
<span>All Category</span>
</a>
</div>
</div>'
?>
</div>
</div>
<?php require 'partials/_footer.php' ?>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script src="https://unpkg.com/bootstrap-show-password@1.2.1/dist/bootstrap-show-password.min.js"></script>
</body>
</html>