|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/dev.outerorbittech.com/bhive/ | |
|
Path: /home2/outerorb/dev.outerorbittech.com/bhive/dispresume.php
Size: 1.39 KB
Permissions: 0644
<?php require_once("connection.php");$reg_no=$_GET['id'];?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>RESUME</title>
<link href="img/ric.png" rel="icon">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://code.jquery.com/jquery-3.6.1.min.js"></script>
<style type="text/css">
@page { size: auto; margin: 10mm; margin-right: -70px; margin-left: -70px;}
@media print {
a[href]:after {
content: none !important;
}
}
@media print {
#printbtn {
display: none !important;
}
.main-heading
{
font-size:30px !important;
}
.underline{
line-height: 27px !important;
text-decoration-style: dotted !important;
}
}
</style>
</head>
<body>
<center>
<?php
$sql="SELECT * from aplicant WHERE reg_no=:reg_no";
$stmt = $db->prepare($sql);
$stmt->bindParam(':reg_no', $reg_no, PDO::PARAM_STR);
$stmt->execute();
$rows=$stmt->fetchall();
foreach($rows as $row)
{
?>
<h1 style="color: green"><?php echo $row['name']; ?></h1>
<object data=
"uploads/<?php echo $row['biodata']; ?>"
width="100%"
height="500">
</object>
</center>
</div>
<?php } ?>
</body>
</html>