| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/rsdgroup/ |
Upload File : |
<?php
include_once("conf/settings.php");
include_once("conf/func.php");
$pageurl= end(@explode("/",$_SERVER['REQUEST_URI']));
$recipeurl = current(@explode(".",$pageurl));
$recipe_key = end(@explode("recipe-",$recipeurl));
$recipeDetails = getRecipeDetailsByName("tblRecipe",$recipe_key);
//echo "<pre>";print_r($recipeDetails);die;
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><?php echo $recipeDetails[0]['Category_Name'];?> Recipe - Cooking Recipe for <?php echo $recipeDetails[0]['Category_Name'];?> | RSD Group</title>
<meta name="Description" content="Are you looking for <?php echo $recipeDetails[0]['Category_Name'];?> recipe? RSD Group provides step by step instructions for preparing <?php echo $recipeDetails[0]['Category_Name'];?> online using proper ingredients.">
<link rel="stylesheet" href="css/style.css">
<link media="screen" rel="stylesheet" href="css/colorbox_new1.css" />
<link rel="stylesheet" type="text/css" href="css/chromestyle.css" />
<script type="text/javascript" src="js/chrome.js"></script>
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" language="JavaScript" src="js/EditMe.groovenGray.js"></script>
<script type="text/javascript" language="JavaScript" src="js/MultiLevelDHTMLMenuExpanderV11.js"></script>
<LINK REL="stylesheet" HREF="css/groovenGray.css" TYPE="text/css">
<!--[if lt IE 9]>
<script src="js/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen" title="prettyPhoto main stylesheet" charset="utf-8" />
<script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<!--header start here-->
<?php include_once("inc/header.php"); ?>
<!--header end here-->
<!--section start here-->
<section>
<div class="ourProdetail">
<div class="articleright">
<div class="articlerightIn"></div>
</div>
<div class="aboutleft">
<div class="activebox" id="top_pan">Recipes</div>
<div id="MDME">
<ul>
<?php
$recipes_list = getAllRecipeByCategory();
foreach($recipes_list as $recipes)
{
?>
<li id="<?php echo $recipes['id'];?>"><?php echo $recipes['category'];?>
<?php if($recipes['recipe_count'] >0) { ?>
<ul>
<?php
foreach($recipes['recipe_arr'] as $recipe_list) { ?>
<li><a href="recipe-<?php echo $recipe_list['recipe_key'];?>.html" class="letter"><?php echo $recipe_list['Category_Name'];?></a></li>
<?php } ?>
</ul>
<?php } ?>
</li>
<?php } ?>
</ul>
</div>
<div class="botline"></div>
</div>
<script type="text/javascript">
cssdropdown.startchrome("chromemenu");
</script>
<div class="rightcontainer">
<div class="braedcrumbInner"><a href="<?php echo @$baseurl;?>">Home</a> > <span>Recipes</span></div>
<div class="ourProdetailtop">
<h1><?php echo $recipeDetails[0]['Category_Name'];?></h1>
<div class="recipe_details"> <?php echo $recipeDetails[0]['Category_Description'];?> </div>
</div>
</div>
<div class="cl"></div>
</div>
<!--footer top start here-->
<?php include_once("inc/footer-top.php"); ?>
<!--footer top end here-->
</section>
<!--section end here-->
<!--footer start here-->
<?php include_once("inc/footer.php"); ?>
<!--footer end here-->
<script type="text/javascript">
$(document).ready(function () {
if ($(window).width() < 950) {
$("#top_pan").click(function(){
$("#MDME").toggle();
});
}
});
</script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
</body>
</html>