-
Notifications
You must be signed in to change notification settings - Fork 0
/
ajaxload.php
48 lines (41 loc) · 1.85 KB
/
ajaxload.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
<?php
session_start();
include("connect.php");
$id = $_SESSION['vender_id'];
$sql = "SELECT * FROM tbl_product where vid='$id'";
$result = mysqli_query($connect, $sql) or die("SQL FAIELD");
$output = "";
$button = "";
$i = 0;
if (mysqli_num_rows($result) > 0) {
$output = '<table margin-top: 20px border-radius: 10px overflow: hidden box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1)>
<thead>
<tr>
<th>#</th>
<th>Serial Number</th>
<th>Product Name</th>
<th>Product Image</th>
<th>Product Details</th>
<th>Category</th>
<th>Quantity</th>
<th>Price</th>
<th>Action</th>
</tr>
</thead>';
while ($row = mysqli_fetch_assoc($result)) {
$i++;
$output .= "<tr><td>$i</td><td>{$row["s_no"]}</td>
<td>{$row["p_name"]}</td><td><img src='{$row["p_image"]}' height='100px' width='100px' class='img'></td>
<td>{$row["p_detail"]}</td><td>{$row["category"]}</td>
<td>{$row["p_quantity"]}</td><td>{$row["p_price"]}</td>
<td class='i'>    <button class='auction-btn' data-id='{$row["product_id"]}'><span class='ri-auction-line'></span><span class='tooltiptext'>Auction</span></button>  
  <button class='edit-btn' data-id='{$row["product_id"]}'><span class='material-symbols-outlined' id='edit'><a href='editproduct.php?pid={$row["product_id"]}'>edit</a></span> <span class='tooltiptext'>Edit Product</span></button> 
<button class='delete-btn' data-id='{$row["product_id"]}'><span class='material-symbols-outlined' >delete</span> <span class='tooltiptext'>Delete Product</span></button> </td></tr>";
}
$output .= "</table>";
mysqli_close($connect);
echo $output;
} else {
echo '<h1 style="color:white">NO PRODUCTS ARE INSERTED</h1>';
}
?>