📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chbluxuries.com
/
chb_data
/
Name
Size
Permissions
Actions
📁
..
-
0755
🗑️
🔒
📄
config.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
error_log
5746.38 KB
0644
🗑️
⬇️
✏️
🔒
Editing: pry_categories.php
<?php include "admin_header.php"; ?> <style> .float{ position:fixed; width:60px; height:60px; bottom:40px; right:40px; background-color:red; color:#FFF; border-radius:50px; text-align:center; box-shadow: 2px 2px 3px #999; } .my-float{ margin-top:22px; font-size:42px; } .my-float:hover{ color:white; } .form-control{ font-size:13px; border-radius: 0; font-weight:500; color:black; } </style> <!-- Begin Page Content --> <div class="container-fluid"> <!-- Page Heading --> <h1 class="h3 mb-4 text-gray-800">Brands Manager</h1> <p style="color:#FF339A; text-align:center;"> <?php include "addprycategory.php";?> <?php include "updateprycategory.php"; ?></p> <div style="overflow-x:scroll;"> <table class='table' width='90%' border="0" style="color:black; font-size:13px; font-weight:500;" data-toggle='bootgrid'> <thead><tr bgcolor="#FF339A" style="color:white;"> <th data-column-id='employee_name' width='200px'>Sub Category</th> <th data-column-id='employee_salary' width='200px'>Brands</th> </tr> </thead> <?php include "prycategory_display.php"; ?> </table> </div> </div> <div class="modal fade" id="modalDialogScrollable" tabindex="-1"> <div class="modal-dialog modal-dialog-scrollable modal-dialog-centered"> <div class="modal-content"> <div class="modal-header"> <h6 style="color:black;">Register New Brand</h6> </div> <div class="modal-body"> <div class=" pt-3" id="profile-change-password"> <!-- Change Password Form --> <form method="post" > <div class="row mb-3"> <div class="col-md-12"> <p> <select class="form-control" name="cat" required> <option selected="selected" value="" >-Choose Brand Sub Category -</option> <?php $sql = "select s,name from sub_category "; $sql2 = mysqli_query($con,$sql); while ($row = mysqli_fetch_array($sql2)) { echo'<option value="'.$row['s'].'">'.$row['name'].'</option>'; } ?></select></p> <p><input type="text" style="text-transform:uppercase;" class="form-control" placeholder="Brand Name" aria-label="Username" aria-describedby="basic-addon1" name="name" required> </p></div></div> <div class="modal-footer"> <input id="submit" name="submit" class="btn btn-sm btn-primary shadow-sm" type="submit" value="Register Brand"> </div> </div></form> </div></div> </div><!-- End Modal Dialog Scrollable--> <!-- /.container-fluid --> </div> <a href="#" class="float" data-toggle="modal" data-target="#modalDialogScrollable"> <i class="bi bi-plus my-float"></i> </a> <!-- End of Main Content --> <?php include "footer.php"; ?>
💾 Save Changes