File manager - Edit - /home/custbahd/public_html/tests/admin panels/admin3/adminView/viewCategories.php
Back
<div > <h3>Category Items</h3> <table class="table "> <thead> <tr> <th class="text-center">S.N.</th> <th class="text-center">Category Name</th> <th class="text-center" colspan="2">Action</th> </tr> </thead> <?php include_once "../config/dbconnect.php"; $sql="SELECT * from category"; $result=$conn-> query($sql); $count=1; if ($result-> num_rows > 0){ while ($row=$result-> fetch_assoc()) { ?> <tr> <td><?=$count?></td> <td><?=$row["category_name"]?></td> <!-- <td><button class="btn btn-primary" >Edit</button></td> --> <td><button class="btn btn-danger" style="height:40px" onclick="categoryDelete('<?=$row['category_id']?>')">Delete</button></td> </tr> <?php $count=$count+1; } } ?> </table> <!-- Trigger the modal with a button --> <button type="button" class="btn btn-secondary" style="height:40px" data-toggle="modal" data-target="#myModal"> Add Category </button> <!-- Modal --> <div class="modal fade" id="myModal" role="dialog"> <div class="modal-dialog"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <h4 class="modal-title">New Category Item</h4> <button type="button" class="close" data-dismiss="modal">×</button> </div> <div class="modal-body"> <form enctype='multipart/form-data' action="./controller/addCatController.php" method="POST"> <div class="form-group"> <label for="c_name">Category Name:</label> <input type="text" class="form-control" name="c_name" required> </div> <div class="form-group"> <button type="submit" class="btn btn-secondary" name="upload" style="height:40px">Add Category</button> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal" style="height:40px">Close</button> </div> </div> </div> </div> </div>
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Generation time: 2.04 |
proxy
|
phpinfo
|
Settings