Server IP : 103.53.40.154 / Your IP : 18.224.59.107 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/ppcad7no/relianttourism.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include "admin/config.php";?> <!doctype html> <html lang="en"> <head> <title>All Tours | Bhatia Taxi Service</title> <meta name="description" content="We provide multiple sameday tours by car like delhi darshan tour by car, delhi to agra tour by car, delhi to jaipur tour by car, delhi to haridwar tour by car and more."/> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <?php include "links.php";?> </head> <body> <?php include "header.php";?> <div class="breadcrumb breadcrumb-style-one"> <div class="container"> <div class="col-lg-12 text-center"> <h2 class="breadcrumb-title">Get Your Tour</h2> <ul class="d-flex justify-content-center breadcrumb-items"> <li class="breadcrumb-item"><a href="index.html">Home</a></li> <li class="breadcrumb-item active">Get Your Tour</li> </ul> </div> </div> </div> <div class="package-area package-style-one pt-110 "> <div class="container"> <div class="row align-items-center"> <div class="col-lg-12"> <div class="section-head-alpha"> <h2>Affordable Sameday Car Tours</h2> <p>Explore the majestic Taj Mahal, the City of Yoga, and the Cartling streets of Delhi in our Tour.</p> </div> </div> </div> <div class="row g-4"> <?php $sqltour = "SELECT * FROM tbl_services WHERE tour_status!='Inactive' ORDER BY `tour_order` ASC LIMIT 6"; $runtour = mysqli_query($db,$sqltour) or die("Query Not run"); while($datatour = mysqli_fetch_assoc($runtour)){ ?> <div class="col-lg-4 col-md-6"> <div class="package-card-alpha"> <div class="package-thumb"> <a href="<?php echo $wspath?>tour<?php echo $datatour['slug_url'];?>.html"><img src="<?php echo $wspath?>admin/images/property-image/<?php echo $datatour['image'];?>" alt="<?php echo $datatour['name'];?>"></a> </div> <div class="package-card-body"> <h3 class="p-card-title"><a href="<?php echo $wspath?>tour<?php echo $datatour['slug_url'];?>.html"><?php echo $datatour['name'];?></a></h3> <span><?php echo $datatour['short_desc'];?></span> <div class="p-card-bottom"> <div class="pkg_btn"> <a href="<?php echo $wspath?>tour<?php echo $datatour['slug_url'];?>.html" class="btn btn-danger">Book Now <i class='bx bxs-right-arrow-alt'></i></a> </div> <div class="wp-btn"> <a href="https://wa.me/<?php echo $data1['whatsapp'];?>" target="blank">WhatsApp Now <i class='bx bxs-right-arrow-alt'></i></a> </div> <!-- <div class="p-card-info"> <span>Start From</span> <h6>₹ 2200/- </h6> </div> --> </div> </div> </div> </div> <?php } ?> </div> </div> </div> <?php include "inner-footer.php";?> <?php include "footer.php";?> </body> </html>