Server IP : 162.214.80.37 / Your IP : 216.73.216.83 Web Server : Apache System : Linux sh013.webhostingservices.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : imyrqtmy ( 2189) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/imyrqtmy/public_html/eventsbyshubhchintak/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include'includes/db-conn.inc.php'; $sqlsubcategory=mysqli_query($conn,"select * from tbl_category where status='1'")or die(mysqli_error()); $countvenuecat=mysqli_num_rows($sqlsubcategory); ?> <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="assets/libs/leaflet/dist/leaflet.css"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Libs --> <link rel="stylesheet" href="assets/libs/bootstrap-icons/font/bootstrap-icons.css"> <link rel="stylesheet" href="assets/fonts/wedding-icon-font/flaticon.css"> <link rel="stylesheet" href="assets/fonts/fontello/css/fontello.css"> <!-- Theme CSS --> <?php include 'includes/head.php'; ?> <link rel="stylesheet" href="assets/css/theme.min.css"> <title>Venues | Wedding & Event by Shubhchintak</title> <style> .btn2{ display: inline-block !important; border: 1px solid goldenrod !important; padding: 4px !important; font-size: 13px !important; margin-top: 5px !important; padding-left: 12px !important; padding-right: 12px !important; border-radius: 3px !important; color: #012F4F !important; } </style> </head> <body> <!-- navbar --> <?php include 'includes/navbar.php'; ?> <main> <section class="pt-6 pb-4"> <div class="container"> <div class="row"> <div class="col-lg-12 col-md-12 col-12"> <div> <small style="color: #6b7280 !important;"><a href="index.php">Home ></a> Vendors</small><br> <h4 class="display-5 fw-semi-bold mb-0" style="font-size: 24px;margin-top: 13px;">Shubhchintak's Vendors</h4> <small>Showing <b><?php echo $countvenuecat; ?></b> results as per your search criteria</small> </div> </div> </div> </div> </section> <!-- venues --> <!-- categories--> <section class="py-10"> <div class="container"> <div class="row"> <?php $sql=mysqli_query($conn,"select * from tbl_category where status='1' order by order_number asc")or die(mysqli_error()); while($row=mysqli_fetch_assoc($sql)) {extract($row) ?> <div class="col-md-6"> <div class="card mb-4"> <div class="row g-0"> <div class="col-xxl-4 col-lg-6"> <div class="position-relative"> <div> <a href="#"> <img src="media/category/<?php echo $image;?>" alt="vendor1" class="img-fluid rounded-start-lg rounded-top rounded-top-lg-0 w-100"> </a> </div> </div> </div> <div class="col-xxl-8 col-lg-6"> <div class="card-body"> <h3> <a href="sub-category.php?cateid=<?php echo $id; ?>" class="text-inherit"><?php echo $name;?></a> </h3> <?php $sql2=mysqli_query($conn,"select * from tbl_subcategory where category_id='$id' and status='1' order by order_number asc")or die(mysqli_error()); while($row2=mysqli_fetch_assoc($sql2)) { ?> <a href="listing.php?url=<?php echo $row2['url']; ?>" class="button btn btn2"><?php echo $row2['name']; ?></a> <?php } ?> </div> </div> </div> </div> </div> <?php } ?> </div> </div> </section> <!-- categories --> <!-- vanues --> <!-- get app --> <section class="py-14" style="background-image: url(assets/images/banner/cta-img-2.jpg); background-position: center; background-size: cover;"> <div class="container"> <div class="row"> <div class="col-lg-6"> <h2 class="display-6 text-white">Are you Vendor ?</h2> <p class="text-white mb-4">Shubhchintak is a Best Place for you. Grow your Business with Shubhchintak Now ! <br> Sign Up to access your Dashboard</p> <a href="vendor-register.php"> <button type="submit" class="btn" style="width: 50%;background: linear-gradient(90deg, #b02a37 0%, #b02a37 39%, #dc3545f2 100%);color: white;">Sign Up Now</button> </a> </div> </div> </div> </section> <!-- get app --> </main> <!-- footer --> <?php include 'includes/footer.php'; ?> <script src="assets/libs/jquery/dist/jquery.min.js"></script> <script src="assets/libs/bootstrap/dist/js/bootstrap.bundle.min.js"></script> <script src="assets/libs/flatpickr/dist/flatpickr.min.js"></script> <!-- Theme JS --> <script src="assets/js/theme.min.js"></script> </body> </html>