]]jkjjgdjffksdkdxmnnnnnnnnnnnmnmmnmnmnmnmbnwqeqwewqskfgj
במ12[cvbnvbnvbnvbnnmnnmnmnnmnmnmnmnmnmmnnmnmnmqewv;'
/
home
/
cgniioxq
/
public_html
/
Upload FileeE
HOME
<?php error_reporting(0); session_start(); include_once 'Config.php'; ?> <!doctype html> <html lang="en"> <head> <title>All Cities - Cgnight</title> <meta name="title" content=""> <meta name="description" content=""> <meta name="robots" content="index, follow"> <meta name="language" content="English"> <link rel="canonical" href="<?php echo $base_url;?>/all-cities"> <link rel="alternate" href="<?php echo $base_url;?>/all-cities" hreflang="en-in" /> <link rel="alternate" href="<?php echo $base_url;?>/all-cities" hreflang="hi-in" /> <script type="application/ld+json"> { "@context": "https://schema.org/", "@type": "WebSite", "name": "Search Real Indian Call Girls Adverts & Adult Meetings India", "url": "<?php echo $base_url;?>", "potentialAction": { "@type": "SearchAction", "target": "<?php echo $base_url;?>/search/?q={search_term_string}", "query-input": "required name=search_term_string" } } </script> <meta charset="utf-8"> <meta content="IE=Edge" http-equiv="X-UA-Compatible"> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="icon" href="<?php echo $base_url;?>/images/favicon.png" type="image/png"> <link href="<?= $base_url; ?>/css/all.min.css" rel="stylesheet"> <link href="<?= $base_url; ?>/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="<?php echo $base_url;?>/css/loginpage.css"> </head> <body> <?php include_once('includes/header.php'); ?> <section> <div class="container"> <div class="content-box1"> <div class="city-container"> <h1 class="city-header text-center">All Cities in India</h1> <?php // Fetch all citys $citys = $mysqli->query("SELECT city_id, city_name, city_slug FROM city ORDER BY city_name ASC"); if ($citys->num_rows > 0) { while ($city = $citys->fetch_assoc()) { // Display the city title with a link echo '<h2 class="city-title"><a href="' . $base_url . '/call-girls/' . $city['city_slug'] . '/" class="city-link">' . $city['city_name'] . '</a></h2>'; // Fetch cities for the current city $city_id = $city['city_id']; $cities = $mysqli->query("SELECT location_name, location_slug FROM location WHERE city_id = '$city_id' ORDER BY location_name ASC"); if ($cities->num_rows > 0) { echo '<div class="area-holder d-flex flex-wrap my-3">'; while ($location = $cities->fetch_assoc()) { // Display each location link echo '<a href="' . $base_url . '/call-girls/' . $city['city_slug'] . '/' . $location['location_slug'] . '/" class="area-btn mt-2 mx-1">' . $location['location_name'] . '</a>'; } echo '</div>'; } } } ?> </div> </div> </div> </section> <?php include_once('includes/footer.php'); ?> <script src="<?php echo $base_url;?>/js/bootstrap.bundle.min.js"></script> <script> document.addEventListener('DOMContentLoaded', () => { const scrollBtn = document.querySelector('.scroll-btn'); // Smooth scroll to the top when the button is clicked scrollBtn.addEventListener('click', () => { window.scrollTo({ top: 0, behavior: 'smooth' }); }); // Show or hide the button based on the scroll position window.addEventListener('scroll', () => { scrollBtn.style.display = window.scrollY > 20 ? 'block' : 'none'; }); }); </script> </body> </html>