|
Server IP : 86.38.243.193 / Your IP : 216.73.217.143 Web Server : LiteSpeed System : Linux in-mum-web1336.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64 User : u493057690 ( 493057690) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON Directory (0755) : /home/u493057690/domains/iasfindia.com/public_html/admin/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
require_once 'validate.php';
require 'name.php';
?>
<style>
@media screen
{
.srid
{
top: 249px;
position: absolute;
font-size: 49px;
left: 0px;
text-align: center;
width: 100% !important;
color: #044b86;
}
.photo
{
width: 220px !important;
top: 359px;
position: absolute;
left: 235px;
border: 9px solid #034b86;
border-radius: 30px;
}
.name
{
top: 665px;
position: absolute;
font-size: 52px;
left: 0px;
text-align: center;
width: 100% !important;
}
.fname
{
top: 1122px;
position: absolute;
font-size: 34px;
left: 387px;
}
.info
{
top: 740px;
position: absolute;
font-size: 36px;
left: 0px;
text-align: center;
width: 100%;
}
.sport
{
top: 1334px;
position: absolute;
font-size: 34px;
left: 1039px;
}
.designation
{
top: 862px;
position: absolute;
font-size: 76px;
left: 0px;
text-align: center;
width: 100%;
color: #044b86;
}
.state
{
top: 1192px;
position: absolute;
font-size: 34px;
left: 443px;
}
}
@media print
{
.srid
{
top: 249px;
position: absolute;
font-size: 49px;
left: 0px;
text-align: center;
width: 100% !important;
color: #044b86;
}
.photo
{
width: 220px !important;
top: 359px;
position: absolute;
left: 235px;
border: 9px solid #034b86;
border-radius: 30px;
}
.name
{
top: 665px;
position: absolute;
font-size: 52px;
left: 0px;
text-align: center;
width: 100% !important;
}
.fname
{
top: 1122px;
position: absolute;
font-size: 34px;
left: 387px;
}
.info
{
top: 740px;
position: absolute;
font-size: 36px;
left: 0px;
text-align: center;
width: 100%;
}
.sport
{
top: 1334px;
position: absolute;
font-size: 34px;
left: 1039px;
}
.designation
{
top: 862px;
position: absolute;
font-size: 76px;
left: 0px;
text-align: center;
width: 100%;
color: #044b86;
}
.state
{
top: 1192px;
position: absolute;
font-size: 34px;
left: 443px;
}
}
</style>
<!--app content-->
<div class="app-content">
<div class="side-app">
<div class = "panel panel-default">
<div class = "panel-body">
<div class="card-body">
<?php
require_once 'connect.php';
if (isset( $_POST['serial_id'] ))
{
$serial_id=$_POST['serial_id'];
$query = $conn->query("SELECT * FROM `registration` where status='Approved' AND serial_id='$serial_id'") or die(mysql_error());
//mysqli_query($conn,$query);
while($fetch = $query->fetch_array()){
?>
<div style="width:709px; height:1105px; text-transform: uppercase;
font-weight: 900; position:absolute; background-image: url(../assets/images/idcard.jpg);" class="printableArea">
<div class="text-body"><h3 class="font-weight-semibold2 text-capitalize srid"><?php echo $fetch['serial_id']?></h3></div>
<div class="item7-card-img mt-5 ">
<img src="../<?php echo $fetch['photo']?>" alt="img" class="w-100 br-5 shadow-lg photo">
</div>
<div class="item7-card-desc d-flex mb-2 mt-3">
<div class="name"><?php echo $fetch['name']?></div>
<div class="info">
<table style="width:100%">
<tr>
<td style="text-align: right; padding: 9px; font-size: 25px;">Father's Name : </td>
<td style="text-align: left; padding: 9px; font-size: 25px; font-weight: bold;"><?php echo $fetch['father_name']?></td>
</tr>
<tr>
<td style="text-align: right; padding: 9px; font-size: 25px;">Age Category : </td>
<td style="text-align: left; padding: 9px; font-size: 25px; font-weight: bold;"><?php echo $fetch['age_category']?></td>
</tr>
<tr>
<td style="text-align: right; padding: 9px; font-size: 25px;">Game : </td>
<td style="text-align: left; padding: 9px; font-size: 25px; font-weight: bold;"><?php echo $fetch['sport']?></td>
</tr>
<tr>
<td style="text-align: right; padding: 9px; font-size: 25px;">State : </td>
<td style="text-align: left; padding: 9px; font-size: 25px; font-weight: bold;"><?php echo $fetch['state']?></td>
</tr>
</table>
</div>
<p class="designation"><?php echo $fetch['designation']?></p>
</div>
</div>
<?php
}
}
?>
</div>
</div>
</div>
</div>
</div>
<!--app content-->