| Server IP : 192.169.170.185 / Your IP : 216.73.216.97 Web Server : Apache System : Linux p3plmcpnl495852.prod.phx3.secureserver.net 4.18.0-553.52.1.lve.el8.x86_64 #1 SMP Wed May 21 15:31:29 UTC 2025 x86_64 User : akhilnew ( 1712764) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/akhilnew/www/tourismjournal.net/ |
Upload File : |
<?php
session_start();
if(file_exists('inc/config.php')): require_once('inc/config.php'); else: die('Required file doesn\'t exist.'); endif;
$files_inc = array('encryptions.class', 'functions.class', 'csrf.class', 'sendmail.class');
foreach($files_inc as $file_inc):
if(file_exists(MYF.$file_inc.'.php')): require_once(MYF.$file_inc.'.php'); else: die('Required file doesn\'t exist1.'); endif;
endforeach;
$stmt = $mysqli->prepare("SELECT websitename, websiteemail, fromname, fromemail, replyname, replyemail, impactfactor, issn, mailer, extensions, signature, editorspicture FROM settings ORDER BY settingsid DESC LIMIT 1") or die('An error occurred. Please try after some time.');
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($websitename, $websiteemail, $fromname, $fromemail, $replyname, $replyemail, $impactfactor, $issn, $mailer, $extensions, $signature, $editorspicture);
$stmt->fetch();
$stmt->close();
$pathinfo = pathinfo($_SERVER['PHP_SELF']);
$filename = $pathinfo['filename'];
$pagename = ($filename == 'index') ? basename(getcwd()) : $filename;
$basename = basename(dirname(__FILE__));
$pagestatus = 'enabled';
$stmt = $mysqli->prepare("SELECT * FROM pages WHERE (name = ? AND status = ?) LIMIT 1") or die('An error occurred. Please try after some time.');
$stmt->bind_param('ss', $pagename, $pagestatus);
$stmt->execute();
$stmt->store_result();
$active_page = $stmt->num_rows();
$stmt->close();
if($active_page == 0):
die('Page not found.');
endif;
$decryptedfocus = filter_input(INPUT_POST, 'focus', FILTER_SANITIZE_STRING);
$decryptedfocus = strip_tags($en->decrypt($fn->escape($decryptedfocus)));
$gSiteKey = '6LdEqJMUAAAAAL4LPNIRWb29qPckJQM60FAFaJgE';
if($_SERVER['REQUEST_METHOD'] === 'POST' && $decryptedfocus):
if($csrf->check_valid('post')):
function gCAPTCHA($reCAPTCHA){
$secret = '6LdEqJMUAAAAAKYsDj6fokyc_4IEbeB23qUvDavq';
$verifyResponse = file_get_contents('https://www.google.com/recaptcha/api/siteverify?secret='.$secret.'&response='.$reCAPTCHA);
return json_decode($verifyResponse);
}
if(file_exists('inc/'.$filename.'.php')):
require_once('inc/'.$filename.'.php');
exit();
else:
die(output(false, 'Required file is missing.'));
endif;
else:
die(output(false, 'Submission not allowed.'));
endif;
endif;
$stmt = $mysqli->prepare("SELECT hits FROM pages WHERE name = ? LIMIT 1") or die('An error occurred. Please try after some time.');
$stmt->bind_param('s', $pagename);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($hits);
$stmt->fetch();
$stmt->close();
$hits = $hits + 1;
$stmt = $mysqli->prepare("UPDATE pages SET hits = ? WHERE name = ? LIMIT 1") or die('An error occurred. Please try after some time.');
$stmt->bind_param('ss', $hits, $pagename);
$stmt->execute();
$stmt->close();
$article_status = 'enabled';
$articleparams = filter_input(INPUT_GET, 'params', FILTER_SANITIZE_STRING);
$articleparams = strip_tags($fn->remaspace($fn->escape($articleparams)));
$articleparams = explode('.', $articleparams);
$year = (array_key_exists(0, $articleparams)) ? $articleparams[0] : '';
$volume = (array_key_exists(1, $articleparams)) ? substr($articleparams[1], 1) : '';
$issue = (array_key_exists(2, $articleparams)) ? substr($articleparams[2], 1) : '';
$part = (array_key_exists(3, $articleparams)) ? $articleparams[3] : '';
$archivesid = (array_key_exists(4, $articleparams)) ? $articleparams[4] : '';
$si = filter_input(INPUT_GET, 'si', FILTER_SANITIZE_STRING);
$si = strip_tags($fn->remaspace($fn->escape($si)));
if($pagename == 'archives' && $year && $volume && $issue && $part && $archivesid):
$stmt = $mysqli->prepare("SELECT title, keywords, description FROM archives WHERE (archivesid = ? AND status = ?) LIMIT 1") or die('An error occurred. Please try after some time.');
$stmt->bind_param('is', $archivesid, $article_status);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($page_title, $page_meta_keyword, $page_meta_desc);
$stmt->fetch();
$stmt->close();
$specialissue = ($si === 'true') ? 'Special Issue ' : 'Issue ';
$head_title = strip_tags(html_entity_decode($page_title));
$h1heading = $year.', Vol. '.$volume.', '.$specialissue.$issue.', Part '.$part;
$page_content = '';
elseif($pagename == 'archives' && $year && $volume && $issue && $part):
$volume_keywords = '';
$stmt = $mysqli->prepare("SELECT keywords FROM archives WHERE (year = ? AND volume = ? AND issue = ? AND part = ?)") or die('An error occurred. Please try after some time.');
$stmt->bind_param('siss', $year, $volume, $issue, $part);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($keywords);
while($stmt->fetch()):
$volume_keywords .= ($keywords) ? $keywords.', ' : '';
endwhile;
$stmt->close();
$specialissue = ($si === 'true') ? 'Special Issue ' : 'Issue ';
$head_title = $year.', Vol. '.$volume.', '.$specialissue.$issue.', Part '.$part.' | '.$websitename;
$h1heading = $year.', Vol. '.$volume.', '.$specialissue.$issue.', Part '.$part;
$page_meta_desc = 'Vol. '.$volume.', '.$specialissue.$issue.' ('.$year.')';
$page_meta_keyword= trim(rtrim($volume_keywords, ', '));
$page_content = '';
else:
$stmt = $mysqli->prepare("SELECT title, h1heading, metadescription, metakeyword, content FROM pages WHERE name = ? LIMIT 1") or die('An error occurred. Please try after some time.');
$stmt->bind_param('s', $pagename);
$stmt->execute();
$stmt->store_result();
$count_rows = $stmt->num_rows();
$stmt->bind_result($page_title, $h1heading, $page_meta_desc, $page_meta_keyword, $page_content);
$stmt->fetch();
$stmt->close();
if($count_rows == 0):
$head_title = ucwords(basename(getcwd())).' | '.$websitename;
$h1heading = '';$page_meta_desc = '';$page_meta_keyword = '';$page_content = '';
else:
$head_title = html_entity_decode($page_title);
$h1heading = $h1heading ?: html_entity_decode($head_title);
endif;
$page_content = html_entity_decode($page_content);
endif;
$copyright_year = date('Y');
$protocol = !empty($_SERVER['HTTPS']) ? 'https' : 'http';
$canonicalUrl = $protocol . '://' . $_SERVER['HTTP_HOST'] . strtok($_SERVER['REQUEST_URI'], '?');
echo <<<EOJ
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{$page_meta_desc}" />
<meta name="keywords" content="{$page_meta_keyword}" />
<meta name="Author" content="{$websitename}-{$fromemail}" />
<meta name="Robots" content="index, follow" />
<title>{$head_title}</title>
EOJ;
if($pagename == 'archives' && $year && $volume && $issue && $part && $archivesid):
function multiexplode($delimiters, $string){
$ready = str_replace($delimiters, $delimiters[0], $string);
$launch = explode($delimiters[0], $ready);
return $launch;
}
$stmt = $mysqli->prepare("SELECT doi, month, year, refnumber, volume, issue, part, authorname, title, abstract, pagenumber, description, file, creation FROM archives WHERE (archivesid = ? AND status = ?) LIMIT 1") or die('An error occurred. Please try after some time.');
$stmt->bind_param('is', $archivesid, $article_status);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($m_doi, $m_month, $m_year, $m_refnumber, $m_volume, $m_issue, $m_part, $m_authorname, $m_title, $m_abstract, $m_pagenumber, $m_description, $m_file, $m_creation);
$stmt->fetch();
$stmt->close();
echo PHP_EOL;
echo <<<EOJ
<meta name="citation_journal_title" content="{$websitename}" />
<meta name="citation_journal_abbrev" content="Int. J. Tourism Hotel Manage.">
<meta name="citation_publisher" content="AkiNik Publications">
EOJ;
echo PHP_EOL;
$m_authors = multiexplode(array(',', ' and ', ' And '), $m_authorname);
foreach($m_authors as $author):
echo '<meta name="citation_author" content="'.trim($author).'" />'.PHP_EOL;
endforeach;
$m_month = date('m', strtotime(substr($m_month, 0, 3)));
$m_title = strip_tags(html_entity_decode($m_title));
$m_creation = date('Y/m/d', strtotime($m_creation));
$m_pagenumber = explode('-', $m_pagenumber);
$m_abstract = strip_tags(html_entity_decode($m_abstract));
echo <<<EOJ
<meta name="citation_title" content="{$m_title}" />
<meta name="citation_online_date" content="{$m_creation}" />
<meta name="citation_publication_date" content="{$m_year}" />
<meta name="citation_volume" content="{$m_volume}" />
<meta name="citation_issue" content="{$m_issue}" />
<meta name="citation_issn" content="2706-9591" />
<meta name="citation_firstpage" content="{$m_pagenumber[0]}" />
<meta name="citation_lastpage" content="{$m_pagenumber[1]}" />
<meta name="citation_doi" content="{$m_doi}" />
<meta name="citation_abstract_html_url" content="{$baseurl}archives/{$year}.v{$volume}.i{$issue}.{$part}.{$archivesid}" />
<meta name="citation_pdf_url" content="{$baseurl}archives/{$m_year}/vol{$m_volume}issue{$m_issue}/Part{$m_part}/{$m_file}" />
<meta name="citation_article_type" content="Research Article" />
<meta name="citation_abstract" content="{$m_abstract}" />
EOJ;
endif;
if(($pagename == 'archives' OR $pagename == 'special-issue') && ($year && $volume && $issue && $part && $archivesid)):
echo PHP_EOL;
function explodeAuthors($delimiters, $string){
$ready = str_replace($delimiters, $delimiters[0], $string);
$launch = explode($delimiters[0], $ready);
return $launch;
}
$stmt = $mysqli->prepare("SELECT doi, month, year, refnumber, volume, issue, part, authorname, title, abstract, pagenumber, keywords, file, creation FROM archives WHERE (archivesid = ? AND status = 'enabled')") or die('An error occurred. Please try after some time.');
$stmt->bind_param('i', $archivesid);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($m_doi, $m_month, $m_year, $m_refnumber, $m_volume, $m_issue, $m_part, $m_authorname, $m_title, $m_abstract, $m_pagenumber, $m_keywords, $m_file, $m_creation);
$stmt->fetch();
$stmt->close();
$m_title = str_replace('"', '', strip_tags(html_entity_decode($m_title)));
$m_abstract = str_replace(array('\\', '"', '\''), '', strip_tags(html_entity_decode($m_abstract)));
$datePublished = date('Y-m-dTh:i:s', strtotime($m_creation));
$m_keywords = explode(',', $m_keywords);
$m_keywordsList = array();
foreach($m_keywords as $m_keywords1):
$m_keywordsList[] = '"'.trim($m_keywords1).'"';
endforeach;
$m_keywords = implode(',', $m_keywordsList);
$m_authorname = explodeAuthors(array(',', ' and ', ' And '), $m_authorname);
$m_authornameList = array();
foreach($m_authorname as $m_author):
$m_authornameList[] = '{"name":"'.trim($m_author).'","@type":"Person"}';
endforeach;
$m_authorname = implode(',', $m_authornameList);
$m_pagenumber = explode('-', $m_pagenumber);
$copyrightYear = date('Y');
echo <<<EOJ
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ScholarlyArticle",
"@id": "{$baseurl}archives/{$year}.v{$volume}.i{$issue}.{$part}.{$archivesid}",
"name": "{$m_title}",
"datePublished": "{$datePublished}",
"isPartOf": {
"@id": "{$baseurl}archives/{$year}.v{$volume}.i{$issue}.{$part}",
"@type": "PublicationIssue",
"issueNumber": "{$m_issue}",
"datePublished": "{$datePublished}",
"isPartOf": {
"@id": "{$baseurl}",
"@type": "Periodical",
"name": "{$websitename}",
"issn": [
"2706-9583"
]
}
},
"url": "{$baseurl}archives/{$year}.v{$volume}.i{$issue}.{$part}.{$archivesid}",
"keywords": [{$m_keywords}],
"inLanguage": "en",
"copyrightHolder": "{$websitename}",
"copyrightYear": "{$copyrightYear}",
"publisher": "Akinik Publications",
"sameAs": "",
"author": [{$m_authorname}],
"description": "{$m_abstract}",
"pageStart": "{$m_pagenumber[0]}",
"pageEnd": "{$m_pagenumber[1]}",
"headline": "{$m_title}"
}
</script>
EOJ;
endif;
if ($pagename === 'tourismjournal.net') :
echo <<<EOJ
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Periodical",
"name": "{$websitename}",
"url": "{$baseurl}",
"issn": ["2706-9583", "2706-9591"],
"editor": [{
"@type": "Person",
"givenName": "Arnold",
"familyName": "Kalyan"
}],
"publisher": [{
"@type": "Organization",
"name": "AkiNik Publications"
}],
"description": "{$page_meta_desc}"
},
{
"@type": "WebPage",
"name": "{$websitename}",
"url": "{$baseurl}",
"primaryImageOfPage": {
"@id": "{$baseurl}#primaryimage"
},
"image": { "@id": "{$baseurl}#primaryimage" },
"thumbnailUrl": "{$baseurl}uploads/JPG_20191016_122811.jpg",
"description": "{$page_meta_desc}",
"publisher": {
"@type": "Organization",
"name": "AkiNik Publications",
"url": "https://www.akinik.com"
},
"breadcrumb": {
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "{$baseurl}"
}
]
}
},
{
"@type": "Organization",
"name": "{$websitename}",
"url": "{$baseurl}",
"logo": "{$baseurl}images/logo.png",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+91-9711224068",
"contactType": "Customer Support",
"areaServed": "Worldwide",
"availableLanguage": ["English"]
}
}
]
}
</script>
<meta property="og:type" content="website">
<meta property="og:url" content="{$baseurl}">
<meta property="og:title" content="{$head_title}">
<meta property="og:description" content="{$page_meta_desc}">
<meta property="og:image" content="{$baseurl}uploads/JPG_20191016_122811.jpg">
EOJ;
echo PHP_EOL;
endif;
echo PHP_EOL;
?>
<link rel="canonical" href="<?php echo $canonicalUrl;?>">
<link rel="shortcut icon" href="<?php echo $imageurl;?>favicon.ico" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,500|Domine:400,700|Material+Icons" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/css/materialize.min.css" />
<style type="text/css">
*{margin:0;box-sizing:border-box !important;outline:none}html,body{width:100%}
body{height:100%;font-size:13px;font-family:'Roboto', sans-serif;overflow-y:scroll}
a{text-decoration:none}a:hover{text-decoration:underline}img,a img{max-width:100%;border:none;object-fit:cover;overflow:hidden}
b,strong,label,th,h1,h2,h3,h4,h5,h6{margin:0;font-weight:500}h1{font-size:24px}h2{font-size:22px}h3{font-size:18px}h4{font-size:16px}h5{font-size:14px}h6{font-size:12px}input[type=text],.btn-flat,select,textarea{padding:0 5px;font-size:13px !important;font-family:'Roboto', sans-serif;resize:none}input[type=text]::placeholder{color:#999}.row{margin-bottom:0}
.fluid,.head,.body,.foot{float:left;width:100%;height:auto}.container{width:75%}
.topbar{padding:5px 0 6px}
.topbar a{margin-left:15px;font-size:11px;font-weight:500;text-transform:uppercase}
.header{padding:8px 160px}
.header img{display:block}
.header form{width:300px;border:1px solid #d9d9d9;border-radius:2px;-webkit-border-radius:2px;display:flex;overflow:hidden}
.header form input[type=text]{height:32px;margin:0;padding-left:8px;border:none !important;border-radius:0;box-shadow:none !important}
.header form button{width:36px;height:32px;padding:0;border-radius:0}
.header form button i{line-height:32px;font-size:21px}
.header ul{margin-left:20px}
.header ul li{font-weight:500;list-style-type:disc;list-style-position:inside}
.header h5{margin-top:10px}
nav{border-top:1px solid #00897b;border-bottom:1px solid #00897b}
nav ul{display:flex}
nav ul li{flex-grow:1}
nav ul li:nth-child(6){background-color:#35926e;}
nav ul li a{padding:11px 0 10px;color:#fff;font-size:12px;font-weight:500;text-align:center;text-transform:uppercase}
nav a:hover,.sidenav a:hover{text-decoration:none}
nav *{height:auto !important;min-height:auto !important;line-height:normal !important}
.sidenav-trigger,.sidenav-trigger i{height:36px !important;line-height:36px !important}
.updates{margin-bottom:10px;padding:7px 0;font-size:12px;font-weight:500;text-transform:uppercase}
.sidebar,.justify{margin-bottom:10px}
.sidebar .head{padding:7px 8px 5px;border-bottom:2px solid #095186;font-size:12px;font-weight:500;text-transform:uppercase}
.sidebar .body{padding-bottom:10px;background-color:#f0f5f0}
.sidebar .body li{border-bottom:1px solid #bd720b;font-size:12px;font-weight:500;clear:both}
.sidebar .body li a,.sidebar .body li b,.sidebar .body li strong{padding:5px 10px;color:#333;display:block}
.sidebar .body li a:hover{ color: #000; text-decoration:none}
.sidebar .body.subs{padding:10px 0}
.sidebar .body.subs img{margin:5px auto 0;display:block}
.justify .phead,.justify .chead{margin-bottom:10px;padding-bottom:5px;font-size:16px;font-weight:700;font-family:'Domine', serif}
.justify .phead{border-bottom:1px solid #e5e5e5;color:#095186}
.justify .chead{font-size:14px}
.justify a{color:#00897b}
.boards .head,.archives .head{padding:7px;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;text-transform:uppercase}
.boards .body,.archives .body{margin-bottom:10px;border:1px solid #e5e5e5;border-top:none;border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px}
.boards .body .col{padding:10px;border-bottom:1px solid #e5e5e5;display:flex}
.boards .body .col:last-child{border:none}
.boards .body .left img{width:70px;max-width:70px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;object-fit:cover}
.boards .body .left:last-child{padding-left:10px}
.archives .body{padding:0 10px 10px}
.archives .body .issue,.archives .body .parts{font-size:12px;font-weight:500;text-transform:uppercase}
.archives .body .issue{margin-top:10px;margin-bottom:5px}
.articles th.xs{width:50px}.articles th.sm{width:100px}
.articles th,.articles td{padding:5px;vertical-align:top}
.articles td .body{margin-bottom:5px}
.articles td .foot{margin-top:5px}.articles td .foot:first-child{margin:0}
.articles td .foot,.articles td .foot a{font-size:12px;font-weight:500}
.abstract .body,.abstract .foot{margin-top:10px}
.abstract .body label.label,.abstract .foot{font-size:11px;font-weight:500;text-transform:uppercase}
.abstract .body label.label{border-bottom:1px solid #f00}
.abstract .foot a.btn-flat{height:30px;line-height:30px;padding:1px 10px 0;font-size:11px}
.abstract .foot a.btn-flat:hover{text-decoration:none}
.citation{margin-top:20px;padding:10px;background-color:#cbe0cb;border:1px solid #900;color:#0000cc}
.citation .head{margin-bottom:5px;padding-bottom:5px;border-bottom:1px dashed #999;font-weight:700}
.citation .body{line-height:18px;-ms-word-break:break-all;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;hyphens:auto;overflow-wrap:break-word}
.citation .body a{color:#0000cc;text-decoration:underline}
.citation .body a:hover{text-decoration:none}
.indexing .col{height:80px;line-height:72px;padding:0;border:1px solid #999;overflow:hidden}
.indexing .col img{float:none;vertical-align:middle}
.noscript{margin-top:20px;font-size:14px;display:none}
.ajax-form{border:1px solid #e5e5e5;border-radius:5px;-webkit-border-radius:5px;clear:both;overflow:hidden}
.ajax-form .card-content{padding:20px 24px}
.ajax-form .card-content .row{margin-bottom:0}
.ajax-form .card-content label{float:left;color:#555;font-size:12px;text-transform:uppercase}
.ajax-form .card-content input,.ajax-form .card-content select,.ajax-form .card-content textarea{height:35px;margin-bottom:15px;padding:0 7px;background-color:#fff;border:1px solid #ddd;border-radius:3px;webkit-border-radius:2px}
.ajax-form .card-content textarea{min-height:100px;padding-top:5px}
.ajax-form .card-content .file-path{height:35px !important}
.ajax-form .card-content .btn{height:35px;line-height:34px;border-radius:3px;-webkit-border-radius:3px;box-shadow:none;font-size:12px}
.ajax-form .card-action button{height:35px;line-height:33px;padding:0 15px;border-radius:3px;-webkit-border-radius:3px}
.progress{border-radius:0;position:absolute;margin:0;top:0;left:0;z-index:999;display:none}
#toast-container{top:auto;right:30px;bottom:30px}.toast{padding:0 15px;font-size:13px}
.footer{padding:10px 0;border-top:1px solid #455a64;font-size:11px;text-transform:uppercase}
.man-color{background-color: #095186!important;}
.man-color1{background-color: #bd720b!important;}
.man-back{background-color: #2d5b7e;}
.footer-man{color:#fff!important;}
.man-color1{color: #2d5b7e;}
.ie-content{display:none}
.UUbT9 tr{border:none;}
.UUbT9 tr td{padding:5px;border:1px solid #ddd;}
.UUbT9 tr td:first-child{background-color:#9a9aff}
.UUbT9 tr td:last-child{background-color:#bbbbf9}
@media(max-width:992px){
.container{width:100%}
.header{padding:0}
.header .col{text-align:center}
.header .col a{float:none !important;display:inline-block}
.header .col a img{margin:auto}
.header form{width:100%;margin-top:10px}
.header ul{width:100%;margin:0;clear:both}
.header ul li{margin:0 5px;text-align:center;list-style:none;display:inline-block}
.header h5{margin-bottom:10px}
}
@media(max-width:768px){
}
@media(max-width:600px){
.topbar .col,.header .col{text-align:center}.header .col img{float:none}
.header form{width:100%;margin-top:5px}
#toast-container{top:auto;bottom:0;left:0;right:0}
}
.bs-row {--bs-gutter-x: 1.5rem;display: flex;flex-wrap: wrap;margin-right: calc(-0.5 * var(--bs-gutter-x));margin-left: calc(-0.5 * var(--bs-gutter-x));text-align: center;}
.bs-row > * {flex-shrink: 0;width: 25%;display: flex;flex-direction: column;align-items: center;justify-content: space-between;row-gap: 10px;margin-bottom: 30px;padding-right: calc(var(--bs-gutter-x) * 0.5);padding-left: calc(var(--bs-gutter-x) * 0.5);}
.bs-row > * > a {display: inline-flex;flex-direction: column;row-gap: 8px;}
.mobilebuttons{display: flex;align-items: center;justify-content: center;clear: both;float: left;width: 100%;column-gap: 10px;margin-top: 10px;}
.mobilebuttons.d-flex-col{flex-direction: column;row-gap: 10px;}
.mobilebuttons .enqbtn{border-radius: 17px;border: 1px solid #2e3192;height: 34px;width: 100%;background: #fff;display: flex;align-items: center;justify-content: center;color: #2e3192;font-weight: 500;column-gap: 5px;text-decoration: none;cursor: pointer;}
.mobilebuttons .enqbtn.bgbtn{background: #2e3192;color: #fff;}
.mobilebuttons .enqbtn.hideonlarge{display: none;}
.mobilebuttons .enqbtn span.material-icons{font-size: 16px;}
.subscriptionenquirycanvas{background: #e6ebf8;position: fixed;bottom: -84px;left: 0;right: 0;z-index: 999;padding: 0 12px;box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.15);transition: all linear 0.25s;height: 74px;}
.subscriptionenquirycanvas .container{display: flex;align-items: center;justify-content: space-between;height: 74px;}
.subscriptionenquirycanvas .container .hideonmobile{display: flex;align-items: center;column-gap: 15px;}
.subscriptionenquirycanvas .container .buttongroup{display: flex;align-items: center;column-gap: 5px;}
.subscriptionenquirycanvas .container a.enqbtn{padding: 0 9px;background: #fe610c;border-radius: 5px;color: #fff;font-weight: 500;font-family: 'Roboto', sans-serif;color: #fff;font-size: 13px;height: 34px;display: inline-flex;border: 1px solid transparent;align-items: center;column-gap: 5px;text-decoration: none;}
.subscriptionenquirycanvas .container a.enqbtn.wab{border-color: #fe610c;background: #fff;color: #fe610c;}
@media(max-width:600px){.bs-row > * {width: 50%;}.mobilebuttons .enqbtn.hideonlarge{display: flex;}.mobilebuttons .enqbtn.hideonsmall{display: none;}.subscriptionenquirycanvas .container .hideonmobile{display: none;}.subscriptionenquirycanvas .container{justify-content: center;}}
.subenqform{background: #000a;position: fixed;top: 0;bottom: 0;left: 0;right: 0;z-index: 999;display: none;font-family: 'Roboto', sans-serif;}
.subenqform .centered{display: flex;align-items: center;justify-content: center;width: 100%;height: 100vh;padding: 16px;}
.subenqform .centered .formcard{background: #fff;border-radius: 12px;width: 500px;overflow: hidden;}
.subenqform .centered .formcard .formcardhead{background: #0259b9;height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;position: relative;row-gap: 10px;}
.subenqform .centered .formcard .formcardhead h5{color: #fff;font-size: 20px;font-weight: 500;}
.subenqform .centered .formcard .formcardhead b{color: #fff;font-size: 15px;font-weight: 500;}
.subenqform .centered .formcard .formcardhead button{background: none;width: 24px;height: 24px;display:flex;align-items: center;justify-content: center;border: none;cursor: pointer;position: absolute;top: 10px;right: 10px;color: #fff;}
.subenqform .centered .formcard form .form-row{--bs-gutter-x: 1.5rem;display: flex;flex-wrap: wrap;margin-bottom: 12px;}
.subenqform .centered .formcard form .form-row > *{width: 100%;flex-shrink: 0;padding-right: calc(var(--bs-gutter-x) * 0.5);padding-left: calc(var(--bs-gutter-x) * 0.5);}
.subenqform .centered .formcard form .form-row-2 > *{width: 50%;}
.subenqform .centered .formcard form .form-row label{text-transform: uppercase;font-size: 11px;font-weight: 500;color: #333;float: left;display: block;}
.subenqform .centered .formcard form .form-row .field{background: #fff;border-radius: 4px;width: 100%;border:1px solid #dee2e6;height: 34px;padding: 7px;box-shadow: none;outline: none;font-family: 'Roboto', sans-serif;}
.subenqform .centered .formcard form .form-row .field:focus{border-color: #0259b9;}
.subenqform .centered .formcard form .form-row button,.subenqform .centered .formcard form .form-row .sloader{width: 130px;height:34px;line-height:34px;padding:0px 12px;background:#0259b9;border:none;border-radius:4px;color:#fff;font-size:12px;font-weight:500;text-align:center;text-transform:uppercase;cursor:pointer;box-shadow:0px 1px 1px rgba(0,0,0,0.3);margin:auto;display: inline-block;font-family: 'Roboto', sans-serif;}
.subenqform .centered .formcard form .form-row button:active{background:#187bcf}
.subenqform .centered .formcard form .form-row .sloader{opacity: 0.5;cursor: default;display: none;}
.customtoast button{background: none;width: 24px;height: 24px;display:flex;align-items: center;justify-content: center;border: none;cursor: pointer;}
.grecaptcha-badge{visibility: hidden !important;}
.redpaper-widget {
width: 100%;
padding: 8px;
text-align: center;
background: #fff;
box-shadow: 0 8px 24px rgba(204, 0, 0, 0.15);
transition: transform 0.3s ease;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
row-gap: 10px;
margin-bottom: 10px;
border-radius: 6px;
}
.redpaper-widget:hover {
transform: translateY(-4px);
}
.redpaper-widget img {
float: none !important;
width: 90px;
height: auto;
}
.redpaper-widget .headline {
font: 700 18px/1.2 sans-serif;
color: #fff;
background: #cc0000;
padding: 8px 12px;
border-radius: 6px;
display: inline-block;
text-transform: uppercase;
}
.redpaper-widget .cta {
font: 600 15px/1.4 sans-serif;
color: #cc0000;
}
.redpaper-widget .check-btn {
background: #cc0000;
color: #fff;
border: none;
padding: 10px 20px;
font: 600 14px/1.4 sans-serif;
border-radius: 25px;
cursor: pointer;
position: relative;
overflow: hidden;
z-index: 1;
}
.redpaper-widget .check-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background:
linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%),
linear-gradient(90deg, rgba(255, 0, 0, 0.1), rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
animation: wave-slide 2s infinite;
z-index: 0;
}
.redpaper-widget .check-btn:hover {
background: #a80000;
}
.redpaper-widget .check-btn span {
position: relative;
z-index: 2;
}
@keyframes wave-slide {
0% {
left: -100%;
}
50%, 100% {
left: 100%;
}
}
<?php
$stmt = $mysqli->prepare("SELECT name, file FROM fonts") or die('An error occurred. Please try after some time.');
$stmt->execute();
$stmt->store_result();
if($stmt->num_rows() > 0):
$stmt->bind_result($fontname, $fontfile);
while($stmt->fetch()):
if($fontfile && file_exists($uploadpath.'fonts/'.$fontfile)):
echo '@font-face{font-family:'.$fontname.';src:url('.$uploadurl.'fonts/'.$fontfile.');}';
endif;
endwhile;
endif;
$stmt->close();
?>
</style>
<!--[if IE]>
<style type="text/css">
.ie-browser{display:none}.ie-content{display:block}
</style>
<![endif]-->
<script src="https://www.google.com/recaptcha/api.js" defer></script>
</head>
<body class="blue-grey lighten-5 black-text">
<div class="ie-browser">
<?php
function nav(){
global $mysqli;$list = '';$alignment = 'T';$status = 'enabled';
$stmt = $mysqli->prepare("SELECT content FROM menubar WHERE (alignment = ? AND status = ?) ORDER BY sortnumber ASC") or die('An error occurred. Please try after some time.');
$stmt->bind_param('ss', $alignment, $status);
$stmt->execute();
$stmt->store_result();
if($stmt->num_rows() > 0):
$stmt->bind_result($content);
while($stmt->fetch()):
$list .= '<li>'.html_entity_decode($content).'</li>';
endwhile;
endif;
$stmt->close();
return '<ul class="fluid">'.$list.'</ul>';
}
$nav = nav();
function navfooter(){
global $mysqli;$list = '';$alignment = 'T';$status = 'enabled';
$stmt = $mysqli->prepare("SELECT content FROM menubar WHERE (alignment = ? AND status = ?) ORDER BY sortnumber ASC") or die('An error occurred. Please try after some time.');
$stmt->bind_param('ss', $alignment, $status);
$stmt->execute();
$stmt->store_result();
if($stmt->num_rows() > 0):
$stmt->bind_result($content);
while($stmt->fetch()):
$list .= '<li>'.html_entity_decode($content).'</li>';
endwhile;
endif;
$stmt->close();
return '<ul class="footer-man">'.$list.'</ul>';
}
$navfooter = navfooter();
function sidebarcontent($category){
global $mysqli;$status = 'enabled';$html = '';
$stmt = $mysqli->prepare("SELECT content FROM menubar WHERE (category = ? AND status = ?) ORDER BY sortnumber ASC") or die('An error occurred. Please try after some time.');
$stmt->bind_param('ss', $category, $status);
$stmt->execute();
$stmt->store_result();
if($stmt->num_rows() > 0):
$stmt->bind_result($content);
while($stmt->fetch()):
$html .= '<li>'.html_entity_decode($content).'</li>';
endwhile;
endif;
$stmt->close();
return $html;
}
function sidebar($alignment){
global $mysqli;$status = 'enabled';$html = '';
$stmt = $mysqli->prepare("SELECT category FROM menubar WHERE (alignment = ? AND status = ?) GROUP BY category ORDER BY catsortnumber ASC") or die('An error occurred. Please try after some time.');
$stmt->bind_param('ss', $alignment, $status);
$stmt->execute();
$stmt->store_result();
if($stmt->num_rows() > 0):
$stmt->bind_result($category);
while($stmt->fetch()):
$html .= '<div class="man-color white-text head">'.html_entity_decode($category).'</div>';
$html .= '<ul class="lighten-4 body">'.sidebarcontent($category).'</ul>';
endwhile;
endif;
$stmt->close();
return $html;
}
$sidebar = sidebar('L');
$impactfactor = $impactfactor ? '<br>'.$impactfactor : '';
echo <<<EOJ
<div style="display:flex;justify-content:center;padding:15px 0;">
<a href="https://www.checkplagiarism.ai" style="display:inline-block" target="_blank" rel="nofollow sponsored noopener">
<img src="https://www.akinik.com/images/red-paper/red-paper-banner-8.jpg" alt="Red Paper" title="Red Paper" style="display:block;border:1px solid #000;float:none;max-width:100%" />
</a>
</div>
<div class="container-fluid white z-depth-1">
<div class="row man-back topbar ">
<div class="col s12 m12 l12 right-align">
<a href="{$baseurl}" class="white-text">Home</a>
<a href="{$baseurl}submission" class="white-text">Submit Manuscript</a>
<a href="{$baseurl}contact" class="white-text">Contact Us</a>
</div>
</div>
<div class="row white header">
<div class="col s12 m12 l7">
<a href="{$baseurl}" class="left"><img src="{$imageurl}logo.png" alt="{$websitename}" /></a>
<ul class="left">
<li>Printed Journal</li>
<li>Indexed Journal</li>
<li>Refereed Journal</li>
<li>Peer Reviewed Journal</li>
</ul>
</div>
<div class="col s12 m12 l5 right-align">
<form action="{$baseurl}search" method="get" name="searchform" class="white right" onsubmit="return q.value!='';">
<input type="text" name="q" placeholder="Search articles" autocomplete="off" />
<button type="submit" class="waves-effect btn-flat"><i class="material-icons">search</i></button>
</form><br clear="all">
<h5>{$issn}{$impactfactor}</h5>
</div>
</div>
<nav class="row nav-extended man-color z-depth-0">
<div class="nav-wrapper s12 m12 l12 container">
<ul id="nav-mobile" class="hide-on-med-and-down fluid">{$nav}</ul>
<a href="#" data-target="sidenav" class="sidenav-trigger right"><i class="material-icons left">menu</i>MENU</a>
</div>
</nav>
</div>
<div class="container white z-depth-1">
<div class="sidenav" id="sidenav">{$nav}</div>
<div class="row"><img src="{$imageurl}header.jpg" alt="{$websitename}" /></div>
<div class="row center-align man-back white-text updates">Printed Journal | Refereed Journal | Peer Reviewed Journal</div>
<div style="float:left;width:100%;text-align:center;background: linear-gradient(90deg, #1b1a5c, #6e1b89);padding:14px 0;margin:0 0 10px;color:#fff;font-weight:500;font-size: 18px;">Peer Reviewed Journal</div>
<div class="row">
<div class="col s12 m12 l3 hide-on-med-and-down sidebar">
<a href="https://www.checkplagiarism.ai" target="_blank" style="text-decoration:none;" rel="nofollow sponsored noopener">
<div class="redpaper-widget">
<div class="headline">Check Plagiarism</div>
<img src="https://www.checkplagiarism.ai/static/logo-new.png" alt="Red Paper Logo">
<div class="cta">Try Red Paper Now!</div>
<button class="check-btn"><span>Check Plagiarism</span></button>
</div>
</a>
<a href="{$baseurl}hotel-management-journal-subscription" class="body center-align black-text subs"><b>Subscribe Print Journal</b><br clear="all"><img src="{$imageurl}recommend-this-journal.png" alt="Subscribe Print Journal" /></a>
{$sidebar}
</div>
<div class="col s12 m12 l9 justify" align="justify">
<div class="center-align phead"><h1 style="font-size:18px;">{$h1heading}</h1></div>
EOJ;
?>