403Webshell
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/public_html/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/akhilnew/public_html//engineering-peer-reviewed-journals.php
<?php
if(file_exists('inc/config.php')): require_once('inc/config.php'); else: die('Required file doesn\'t exist.'); endif;
?>
<!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="Explore a wide range of engineering peer-reviewed journals by AKiNik Publications. Stay updated with the latest research and advancements in the field. Discover valuable insights today!" />
<meta name="keywords" content="eournal of science and engineering, advanced journal of science and engineering, engineering peer reviewed journals" />
<meta name="Robots" content="index, follow" />
<title>Engineering Peer Reviewed Journals : AkiNik Publications</title>
<link rel="canonical" href="https://www.akinik.com/engineering-peer-reviewed-journals" />
<link rel="shortcut icon" href="<?php echo $imageurl;?>favicon.ico" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,500|Material+Icons" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body{font-size:13px;font-family:'Roboto', sans-serif;}b{font-weight:500}.container{width:78%;}h2{font-size: 14px;margin: 0;}

.blinker{font-size:18px;font-weight:500;text-transform:uppercase;animation:changecolor 5s infinite;-moz-animation:changecolor 5s infinite;-webkit-animation:changecolor 5s infinite;-ms-animation:changecolor 5s infinite;-o-animation:changecolor 5s infinite}
@keyframes changecolor{0%{color:red}50%{color:green}75%{color:blue}100%{color:red}}

table td:first-child{width:80px;padding:0;}
table td:first-child img{width:100%;display:block;}
table td{text-align:left;vertical-align:top;padding:8px 10px;}

@media(max-width:992px){
.container{width:100%}
table td{width:100% !important;display:block;clear:both;text-align:center;}
table td:first-child{padding-top:10px;}
table td:first-child img{width:80px;display:block;margin:auto;}
}
</style>
</head>
<body class="bg-light">
<?php
function categories() {
	global $mysqli;$categories = [];

	$stmt = $mysqli->prepare("SELECT category FROM engineering_journals WHERE category IS NOT NULL GROUP BY category ORDER BY category ASC") or die('An error occurred. Please try after some time.');
	$stmt->execute();
	$stmt->store_result();
	$stmt->bind_result($category);
	while($stmt->fetch()):
		$categories[] = $category;
	endwhile;
	$stmt->close();
	return array_unique(explode('|', implode('|', $categories)));
}

function journal($category){
	global $mysqli, $baseurl;$html = '';
	$both = "%|$category|%";$left = "%|$category";$right = "$category|%";$none = $category;
	$stmt = $mysqli->prepare("SELECT journal, issn, domain, email, coverpage FROM engineering_journals WHERE (category LIKE ? OR category LIKE ? OR category LIKE ? OR category LIKE ?) AND (coverpage IS NOT NULL AND status = 'enabled') ORDER BY sorting ASC") or die('An error occurred. Please try after some time.');
	$stmt->bind_param('ssss', $both, $left, $right, $none);
	$stmt->execute();
	$stmt->store_result();
	$stmt->bind_result($journal, $issn, $domain, $email, $coverpage);
	while($stmt->fetch()):
		$coverpage = ($coverpage && file_exists('uploads/engineering/'.$coverpage)) ? $baseurl.'uploads/engineering/'.$coverpage : $baseurl.'images/avatar_2x.png';
		$issn = strtoupper($issn);
		$host = parse_url($domain, PHP_URL_HOST);

$html .= <<<EOJ
		<div class="col-lg-6 mb-4">
			<div class="card rounded-0 border-0" style="box-shadow:0 2px 3px rgba(0,0,0,0.25);">
				<table>
					<tr>
						<td>
							<a href="{$domain}" target="_blank"><img src="{$coverpage}" alt="{$journal}" /></a>
						</td>
						<td>
							<b>{$journal}</b>
							<p class="mb-0"><b>{$issn}</b></p>
							<p class="mb-0"><b>Website:</b> <a href="{$domain}" target="_blank" style="text-decoration:none;">{$host}</a></p>
							<p class="mb-0"><b>E-mail:</b> {$email}</p>
						</td>
					</tr>
				</table>
			</div>
		</div>
EOJ;
	endwhile;
	$stmt->close();

	return $html;
}

echo <<<EOJ
<div class="container">
	<div class="card rounded-0">
		<img src="{$imageurl}engineering-peer-reviewed-journals-banner.jpg" alt="Engineering Peer Reviewed Journals" title="Engineering Peer Reviewed Journals" class="card-img-top">
		<div class="card-body">
			<h1 class="card-title text-center mb-3 fs-4 fw-bold">Call for Papers: Engineering Peer Reviewed Journals</h1>
			<p class="card-text" style="text-align:justify;">We are pleased to invite submissions for upcoming issues of our esteemed collection of engineering peer reviewed journals. These publications are dedicated to fostering scholarly dialogue and advancing research in the field of Engineering. We welcome original research, review articles, case studies that contribute to the body of knowledge in Engineering practices, education, administration, and policy.</p><br>
			<h2>Submission Guidelines for Engineering Peer Reviewed Journals:</h2><br>
			<ul>
				<li>Manuscripts must be original and not under consideration by other publications.</li>
				<li>All submissions must adhere to the journal's formatting and style guidelines, available on our website.</li>
				<li>Submissions should include a title page, abstract, keywords, main text, figures, and tables as necessary.</li>
				<li>References should be formatted according to the journal’s specified citation style.</li>
			</ul>
			<br>
			<h2>List of Featured Engineering journals available</h2><br>
EOJ;
			foreach (categories() as $category) {
				echo '<a href="https://www.akinik.com/engineering-peer-reviewed-journals#'.strtolower(str_replace(' ', '-', $category)).'" id="'.strtolower(str_replace(' ', '-', $category)).'" class="text-uppercase mb-2 text-white px-3 py-2" style="float:left;width:100%;text-decoration:none;font-weight:500;background:#b71c1c;box-shadow:0 2px 3px rgba(0,0,0,0.25);">'.$category.'</a>';
				echo '<div class="row">'.journal($category).'</div>';
			}
echo <<<EOJ
		</div>
	</div>
</div>
EOJ;
?>

<a href="https://wa.me/919718222251?text=Hi, I have a query regarding publication in engineering peer reviewed journals." target="_blank" class="position-fixed d-block d-lg-none" style="width:40px;height:140px;top:0;bottom:0;right:0;margin:auto;z-index:1;">
	<img src="https://www.akinik.com/images/whatsapp-logo.png" alt="Engineering peer reviewed journals" />
</a>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit