include_once('admin/functions.php');
include_once('functions.php');
if ( isset( $_GET['url'] ) and ( validate_permalink( $_GET['url'] ) ) ) {
$result = profile_get_permalink( $_GET['url'] );
if (mysqli_num_rows($result) > 0) {
if ($row = mysqli_fetch_assoc($result)) {
// Prepare SEO Content
$page = array();
$page["title"] = $row["biz_title"]. $seo_location;
$page["description"] = $row["biz_seo_description"].$seo_location;
$page["keywords"] = $row["biz_keywords"]. $seo_location;
$page["logo"] = "images/businesses/".$row["biz_logo"];
$page["url"] = "https://www.suncountryplaza.com".$_SERVER['REQUEST_URI'];
$template_title = $row["biz_name"];
$template_title = $row["biz_categories"];
$domain = parse_url( $row["biz_website"], PHP_URL_HOST); // get domain name only
//$page["footer_keywords"] = format_keywords_layout($row["biz_keywords"]);
// Render Header Content
$template_seo = render_header_seo($page);
ob_start();
?>