Preview: sitemap-web.php
Size: 55.17 KB
/home/godevadmin/public_html/admin/sitemap-web.php
<?php
session_start();
include("../include/config.php");
include("../include/functions.php");
define('SITE_URL_domain',"https://www.quicklly.com/");
validate_admin();
if($_POST['submit']=='Update Sitemap' && isset($_POST['submit'])){
//url validation
if(SITE_URL==MAINSITE_URL){
$datavalue=$_POST['datavalue'];
//file handling
// The path to the FTP file, including login arguments
$ftp_path = 'ftp://[email protected]:[email protected]/sitemap.xml';
if(!$ftp_path){
echo "Sitemap file doesn't exist!";
exit();
}
// Allows overwriting of existing files on the remote FTP server
$stream_options = array('ftp' => array('overwrite' => true));
// Creates a stream context resource with the defined options
$stream_context = stream_context_create($stream_options);
// Opens the file for writing and truncates it to zero length
if ($fh = fopen($ftp_path, 'w', 0, $stream_context))
{
// Writes contents to the file
fputs($fh, $datavalue);
// Closes the file handle
fclose($fh);
$_SESSION['sess_msg']="Sitemap Updated Successfuly!";
}
else
{
die('Could not open file.');
}
//file handling end
}else{
die('Could not open file. URL validation failed');
}//url validation end
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo SITE_TITLE; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css/admin.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
</head>
<body>
<?php include("menu.php"); ?>
<br />
<br />
<div align="center" style="color:#00CC00"><?php echo $_SESSION['sess_msg']; $_SESSION['sess_msg']=''; ?></div>
<form action="" enctype="multipart/form-data" method="post">
<textarea name="datavalue" rows="30" style="width:98%; height:80%; margin:15px">
<?php echo htmlentities("<?xml version='1.0' encoding='UTF-8'?>"); ?>
<?php echo htmlentities("<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd'>"); ?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>1<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-grocery-delivery"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php $sql=$obj->query("select distinct(z.city),z.state from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.status=1 and z.city!='' and s.sectionid like '%1%' and s.sectionid<2 group by z.city");
while($result=$obj->fetchNextObject($sql)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-grocery-delivery/near-me-in-".buildURL($result->city)."-".buildURL($result->state); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} ?>
<?php $sql=$obj->query("select distinct(z.city),s.storename,z.state,s.storeid from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.city!='' and s.sectionid like '%1%' and s.sectionid<2");
while($result=$obj->fetchNextObject($sql)){
$categoriesarr=array();
$catcount=$obj->query("select categories from tbl_product where storeid='$result->storeid' and status=1 group by categories");
while($resCat=$obj->fetchNextObject($catcount)){
$catexplode=explode(',',$resCat->categories);
$categorysql=$obj->query("select id from tbl_maincategory where id='$catexplode[0]' and status=1");
if($obj->numRows($categorysql)>1){
array_push($categoriesarr,$catexplode[0]);
}
}
$categoriesarr=array_filter(array_unique($categoriesarr));
if(count($categoriesarr) > 1){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-grocery-store/".buildURL($result->city)."-".buildURL($result->state)."/".buildURL($result->storename); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } ?>
<?php $sqlstore=$obj->query("select distinct(st.storeid), st.storename from stores st left join tbl_store_zip zt on zt.storeid=st.storeid where st.status=1 and st.sectionid like '%1%' and st.sectionid<2");
while($resultstore=$obj->fetchNextObject($sqlstore)){
$sql=$obj->query("select distinct(z.city),z.state from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.city!='' and z.storeid='$resultstore->storeid'");
while($result=$obj->fetchNextObject($sql)){
$sqlcategory=$obj->query("select slug,id from tbl_maincategory where status=1 and parent_id=0 and storeid like '%$resultstore->storeid%' and section_id like '%1%' and section_id<2");
while($reccategory=$obj->fetchNextObject($sqlcategory)){
$subcatcount=$obj->query("select cat_id from tbl_product where categories like '%$reccategory->id%' and storeid='$resultstore->storeid' group by cat_id");
if($obj->numRows($subcatcount) > 1){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-grocery-store/".buildURL($result->city)."-".buildURL($result->state)."/".buildURL($resultstore->storename)."/".buildURL($reccategory->slug); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.80<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } } } ?>
<?php $sqlstore=$obj->query("select distinct(st.storeid), st.storename from stores st left join tbl_store_zip zt on zt.storeid=st.storeid where st.status=1 and st.sectionid like '%1%' and st.sectionid<2");
while($resultstore=$obj->fetchNextObject($sqlstore)){
$sql=$obj->query("select distinct(z.city),z.state from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.city!='' and z.storeid='$resultstore->storeid'");
while($result=$obj->fetchNextObject($sql)){
$sqlcategory=$obj->query("select id from tbl_maincategory where status=1 and parent_id=0 and storeid like '%$resultstore->storeid%' and section_id like '%1%' and section_id<2");
while($reccategory=$obj->fetchNextObject($sqlcategory)){
$sqlsubcategory=$obj->query("select slug,id from tbl_maincategory where status=1 and parent_id='$reccategory->id'");
while($recsubcategory=$obj->fetchNextObject($sqlsubcategory)){
$subcatcount=$obj->query("select cat_id from tbl_product where cat_id='$recsubcategory->id' and storeid='$resultstore->storeid' and status=1");
if($obj->numRows($subcatcount) > 1){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-grocery/".buildURL($result->city)."-".buildURL($result->state)."/".buildURL($resultstore->storename)."/".buildURL($recsubcategory->slug); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.80<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } } } } ?>
<?php
$sql=$obj->query("select distinct(z.city),z.state,s.storeid from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.city!='' group by z.city");
while($result=$obj->fetchNextObject($sql)){
$sqlcategory=$obj->query("select slug from tbl_maincategory where status=1 and parent_id=0 and storeid like '%$result->storeid%' and section_id like '%1%' and section_id<2");
while($reccategory=$obj->fetchNextObject($sqlcategory)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-grocery/".buildURL($result->city)."-".buildURL($result->state)."/".buildURL($reccategory->slug); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.70<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } ?>
<?php $sql=$obj->query("select z.city,z.state,z.storeid from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.status=1 and z.city!='' and z.state!='' and z.sectionid like '%1%' and z.sectionid<2 and s.sectionid like '%1%' and s.sectionid<2 and s.by_pass_zipcode!=1 group by z.storeid");
while($result=$obj->fetchNextObject($sql)){
$sqlcategory=$obj->query("select id from tbl_maincategory where status=1 and parent_id=0 and storeid like '%$result->storeid%' and section_id like '%1%' and section_id<2");
while($reccategory=$obj->fetchNextObject($sqlcategory)){
$sqlsubcategory=$obj->query("select id,slug from tbl_maincategory where status=1 and parent_id='$reccategory->id'");
while($recsubcategory=$obj->fetchNextObject($sqlsubcategory)){
$prodcount=$obj->query("select id from tbl_product where status=1 and cat_id='$recsubcategory->id' and storeid='$result->storeid' limit 2");
$prodcountnum=$obj->numRows($prodcount);
if($prodcountnum > 1){
$sqlstorecity=$obj->query("select z.city,z.state from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.status=1 and z.city!='' and z.state!='' and z.sectionid like '%1%' and z.sectionid<2 and s.sectionid like '%1%' and s.sectionid<2 and s.by_pass_zipcode!=1 and z.storeid='$result->storeid' group by z.city");
while($resultstore=$obj->fetchNextObject($sqlstorecity)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."local-grocery-store/".buildURL($resultstore->city)."-".buildURL($resultstore->state)."/".buildURL($recsubcategory->slug); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.70<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } } } } ?>
<?php $sql=$obj->query("select distinct(s.storeid), s.storename from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.city='' and s.sectionid like '%1%' and s.sectionid<2");
while($result=$obj->fetchNextObject($sql)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-grocery-store/".buildURL($result->storename); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} ?>
<?php $sqlstore=$obj->query("select z.city,z.state,z.storeid from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.status=1 and z.city!='' and z.state!='' and z.sectionid like '%1%' and z.sectionid<2 and s.sectionid like '%1%' and s.sectionid<2 and s.by_pass_zipcode!=1 and z.zip_area='UPS' group by z.storeid");
while($resultstore=$obj->fetchNextObject($sqlstore)){
$sqlcategory=$obj->query("select slug,id from tbl_maincategory where status=1 and parent_id=0 and storeid like '%$resultstore->storeid%' and section_id like '%1%' and section_id<2");
while($reccategory=$obj->fetchNextObject($sqlcategory)){
$prodcount=$obj->query("select id from tbl_product where status=1 and categories like '%$reccategory->id%' and storeid='$resultstore->storeid' limit 2");
$prodcountnum=$obj->numRows($prodcount);
if($prodcountnum > 1){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."order-indian-grocery-online/".buildURL($resultstore->storename)."/".buildURL($reccategory->slug); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.80<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } } ?>
<?php /*$sqlstore=$obj->query("select distinct(s.storeid), s.storename from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.city='' and s.sectionid like '%1%'");
while($resultstore=$obj->fetchNextObject($sqlstore)){
$sqlcategory=$obj->query("select id from tbl_maincategory where status=1 and parent_id=0 and storeid like '%$resultstore->storeid%' and section_id like '%1%'");
while($reccategory=$obj->fetchNextObject($sqlcategory)){
$sqlsubcategory=$obj->query("select slug from tbl_maincategory where status=1 and parent_id='$reccategory->id'");
while($recsubcategory=$obj->fetchNextObject($sqlsubcategory)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."order-indian-grocery-online/".buildURL($resultstore->storename)."/".buildURL($recsubcategory->slug); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.80<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } } */?>
<?php
$sql=$obj->query("select distinct(s.storeid), s.storename from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.city='' and s.sectionid like '%1%' and s.sectionid<2 and s.by_pass_zipcode!=1");
while($result=$obj->fetchNextObject($sql)){
$sqlcategory=$obj->query("select slug from tbl_maincategory where status=1 and parent_id=0 and storeid like '%$result->storeid%' and section_id like '%1%' and section_id<2");
while($reccategory=$obj->fetchNextObject($sqlcategory)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-grocery/".buildURL($reccategory->slug); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.70<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } ?>
<?php $sql=$obj->query("select distinct(s.storeid), s.storename from stores s left join tbl_store_zip z on z.storeid=s.storeid where s.status=1 and z.city='' and s.sectionid like '%1%' and s.sectionid<2");
while($result=$obj->fetchNextObject($sql)){
$sqlcategory=$obj->query("select slug,id from tbl_maincategory where status=1 and parent_id=0 and storeid like '%$result->storeid%' and section_id like '%1%' and section_id<2");
while($reccategory=$obj->fetchNextObject($sqlcategory)){
$sqlsubcategory=$obj->query("select slug,id from tbl_maincategory where status=1 and parent_id='$reccategory->id'");
while($recsubcategory=$obj->fetchNextObject($sqlsubcategory)){
$prodcount=$obj->query("select id from tbl_product where status=1 and cat_id='$recsubcategory->id' and storeid='$result->storeid' limit 2");
$prodcountnum=$obj->numRows($prodcount);
if($prodcountnum > 1){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."local-grocery-store/".buildURL($recsubcategory->slug); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.70<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } } } ?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."about-quicklly"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.50<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."contact"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.50<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."career"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.50<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."privacy-policy"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.50<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."blog"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."be-a-hero"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.80<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."faq"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.70<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."shop-by-stores"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.70<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."press"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.70<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."quicklly-pass"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php
$sql=$obj->query("select * from tbl_blog where status=1");
while($rec=$obj->fetchNextObject($sql)){
if($rec->url!=''){
$blogurl=buildURL($rec->url);
}else{
$blogurl=buildURL($rec->h1);
}
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."blog/".$rec->id."/".$blogurl; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.60<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} ?>
<?php $sql=$obj->query("select distinct(z.city),z.state from tbl_store_zip z left join stores s on s.storeid-z.storeid=1 where z.status=1 and s.status=1 and s.in_stock=1 and z.city!='' and z.sectionid like '%3%' and s.sectionid not like '%3%' group by z.city");
while($result=$obj->fetchNextObject($sql)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-food-delivery/near-me-in-".buildURL($result->city)."-".buildURL($result->state); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.9<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} ?>
<?php $sql=$obj->query("select distinct(z.city),storename,slug,z.state from tbl_store_zip z left join stores s on s.storeid=z.storeid where z.status=1 and s.status=1 and z.city!='' and s.sectionid like '%3%' and s.sectionid<10 group by s.storeid");
while($result=$obj->fetchNextObject($sql)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."order-food-online/".buildURL($result->city)."-".buildURL($result->state)."/".$result->slug; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.9<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} ?>
<?php $sql=$obj->query("select z.city,z.state from tbl_store_zip z join stores s on s.storeid=z.storeid where z.status=1 and s.status=1 and s.by_pass_zipcode!=1 and s.sectionid like '%4%' and s.sectionid<10 and z.city!='' and z.sectionid like '%4%' and z.sectionid<10 group by z.city");
while($result=$obj->fetchNextObject($sql)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-catering/near-me-in-".buildURL($result->city)."-".buildURL($result->state); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.9<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} ?>
<?php $sql=$obj->query("select z.city,storename,BT_storename,slug,z.state from tbl_store_zip z join stores s on s.storeid=z.storeid where z.status=1 and s.status=1 and s.by_pass_zipcode!=1 and s.sectionid like '%4%' and s.sectionid<10 and z.city!='' and z.sectionid like '%4%' and z.sectionid<10 group by z.city");
while($result=$obj->fetchNextObject($sql)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-catering/".buildURL($result->city)."-".buildURL($result->state)."/".$result->slug; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.9<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} ?>
<?php $sql=$obj->query("select z.city,z.state, storeid from tbl_store_zip z where z.status=1 and z.city!='' and z.state!='' and z.sectionid like '%6%' and z.sectionid<10 group by z.city");
while($result=$obj->fetchNextObject($sql)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-tiffin/near-me-in-".buildURL($result->city)."-".buildURL($result->state).""; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.9<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} ?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-tiffin"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.9<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-food-delivery"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.9<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-meal-kit-delivery"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."refer-a-friend"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."outside-delivery-area"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.80<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."online-liquor-store"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."alcohol-delivery-near-me-in-chicago-il"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php $sql=$obj->query("SELECT product_name from tbl_product p join stores s on p.storeid=s.storeid where s.sectionid like '%13%' and s.sectionid>10 and s.sectionid<15 and s.status=1 and p.status=1 and s.in_stock=1 GROUP by product_name");
if($obj->numRows($sql)>0){
while($result=$obj->fetchNextObject($sql)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."liquor-store/".buildURLAlcohol($result->product_name); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } ?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."meal-kit-stores"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>1<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php $sql=$obj->query("SELECT product_name from tbl_product p join stores s on p.storeid=s.storeid where s.sectionid like '%9%' and s.sectionid<10 and s.status=1 and p.status=1 and s.in_stock=1 GROUP by product_name");
if($obj->numRows($sql)>0){
while($result=$obj->fetchNextObject($sql)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-bbq-kit/".buildURL($result->product_name); echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } ?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-bbq-skewers-marinade-kit"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-delivery"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>1<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-category-select/nationwide/sauces"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>1<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-category-select/nationwide/meal-kit"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>1<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-category-select/bay-area/eat-everything"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>1<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-category-select/bay-area/vegan-meal-kit"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>1<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-category-select/bay-area/nut-free-meal-kit"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>1<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-category-select/bay-area/sauces"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>1<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-category-select/bay-area/vegetarian-meal-kit"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>1<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/77024"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>1<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/77023"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/128154"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/128142"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/77049"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/77048"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/77045"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/77046"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/77047"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/77044"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/77043"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/77042"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/77041"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/76995"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/76996"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/76997"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/76991"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/76998"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/76999"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/nationwide/76990"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77055"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77054"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77071"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77072"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77073"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77075"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77074"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77076"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77077"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77078"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77079"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77080"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77062"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77063"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77064"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77065"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77066"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-instant-pot-product-select/bay-area/77012"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-meal-kit-delivery/122203"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-meal-kit-delivery/62740"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-meal-kit-delivery/62738"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."order-indian-roti-kit"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-bread-roti-kit"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."organic-indian-grocery-delivery"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."organic-products"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-seasoning-kit"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-seasoning/easy-indie-bowl"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-seasoning/order-seasoning-kit"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-chai-near-me"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."order-chai-tea-coffee-kit"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-meal-kit-subscription"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-meal-kit-subscription/select"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-sweets-and-snacks"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."sweets-snacks-delivery-near-me"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."holiday-gift-sets"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."buy-premium-gift-sets"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."mithaas-near-me"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-sweets-online"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-mangoes-online"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."indian-mangoes-near-me"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."gift-cards"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."gift"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."recipes"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."recipes/how-it-works"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."recipes/all-recipes"; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";?>
<?php $sql=$obj->query("SELECT recipe_slug from tbl_recipe r join tbl_user u on u.id=r.user_id where u.status='1' and r.status=1 group by recipe_name");
if($obj->numRows($sql)>0){
while($result=$obj->fetchNextObject($sql)){
echo htmlentities("<url>");
echo htmlentities("<loc>"); echo SITE_URL_domain."recipes/".$result->recipe_slug; echo htmlentities("</loc>");
echo htmlentities("<changefreq>"); echo "daily";?><?php echo htmlentities("</changefreq>");
echo htmlentities("<priority>"); ?>0.90<?php echo htmlentities("</priority>");
echo htmlentities("</url>"); echo "";
} } ?>
<?php echo htmlentities("</urlset>"); ?>
</textarea>
<input type="submit" name="submit" value="Update Sitemap" style="padding: 10px; font-weight: bold; margin-left: 45%;"/>
</form>
<br />
<?php include('footer.php'); ?>
</body>
</html>
Directory Contents
Dirs: 10 × Files: 414