BLACKSITE
:
216.73.217.4
:
104.37.75.190 / alpenpass.ca
:
Linux server3.pointsplan.com 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64
:
/
home
/
apca
/
www
/
admin
/
Upload File:
files >> /home/apca/www/admin/manage-vehicles.php
<?php session_start(); error_reporting(0); include('includes/config.php'); if(strlen($_SESSION['alogin'])==0) { header('location:index.php'); } else{ if(isset($_REQUEST['del'])) { $delid=intval($_GET['del']); $sql = "delete from tblvehicles WHERE id=:delid"; $query = $dbh->prepare($sql); $query -> bindParam(':delid',$delid, PDO::PARAM_STR); $query -> execute(); $msg="Vehicle record deleted successfully"; } ?> <!doctype html> <html lang="en" class="no-js"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <meta name="theme-color" content="#3e454c"> <title>Alpenpass Motorcycle Rental Portal |Admin Manage Vehicles </title> <!-- Font awesome --> <link rel="stylesheet" href="css/font-awesome.min.css"> <!-- Sandstone Bootstrap CSS --> <link rel="stylesheet" href="css/bootstrap.min.css"> <!-- Bootstrap Datatables --> <link rel="stylesheet" href="css/dataTables.bootstrap.min.css"> <!-- Bootstrap social button library --> <link rel="stylesheet" href="css/bootstrap-social.css"> <!-- Bootstrap select --> <link rel="stylesheet" href="css/bootstrap-select.css"> <!-- Bootstrap file input --> <link rel="stylesheet" href="css/fileinput.min.css"> <!-- Awesome Bootstrap checkbox --> <link rel="stylesheet" href="css/awesome-bootstrap-checkbox.css"> <!-- Admin Stye --> <link rel="stylesheet" href="css/style.css"> <style> .errorWrap { padding: 10px; margin: 0 0 20px 0; background: #fff; border-left: 4px solid #dd3d36; -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); } .succWrap{ padding: 10px; margin: 0 0 20px 0; background: #fff; border-left: 4px solid #5cb85c; -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); } </style> </head> <body> <?php include('includes/header.php');?> <div class="ts-main-content"> <?php include('includes/leftbar.php');?> <div class="content-wrapper"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <h2 class="page-title">Manage Vehicles</h2> <!-- Zero Configuration Table --> <div class="panel panel-default"> <div class="panel-heading">Vehicle Details</div> <div class="panel-body"> <?php if($error){?><div class="errorWrap"><strong>ERROR</strong>:<?php echo htmlentities($error); ?> </div><?php } else if($msg){?><div class="succWrap"><strong>SUCCESS</strong>:<?php echo htmlentities($msg); ?> </div><?php }?> <table id="zctb" class="display table table-striped table-bordered table-hover" cellspacing="0" width="100%"> <thead> <tr> <th>#</th> <th>Vehicle Title</th> <th>Brand </th> <th>Hourly</th> <th>2 Hours</th> <th>4 Hours</th> <th>All Day</th> <th>24 Hours</th> <th>2 to 9 Days</th> <th>10 Days Plus</th> <th>Seasonal Discount %</th> <th>Model Year</th> <th>Status</th> <th>Action</th> </tr> </thead> <tfoot> <tr> <th>#</th> <th>Vehicle Title</th> <th>Brand </th> <th>Hourly</th> <th>2 Hours</th> <th>4 Hours</th> <th>All Day</th> <th>24 Hours</th> <th>2 to 9 Days</th> <th>10 Days Plus</th> <th>Seasonal Discount %</th> <th>Model Year</th> <th>Status</th> <th>Action</th> </tr> </tr> </tfoot> <tbody> <?php $sql = "SELECT tblvehicles.*, tblbrands.BrandName from tblvehicles join tblbrands on tblbrands.id=tblvehicles.VehiclesBrand"; $query = $dbh -> prepare($sql); $query->execute(); $results=$query->fetchAll(PDO::FETCH_OBJ); $cnt=1; if($query->rowCount() > 0) { foreach($results as $result) { ?> <tr> <td><?php echo htmlentities($cnt);?></td> <td><?php echo htmlentities($result->VehiclesTitle);?></td> <td><?php echo htmlentities($result->BrandName);?></td> <td><?php echo htmlentities($result->hourly);?></td> <td><?php echo htmlentities($result->two_hours);?></td> <td><?php echo htmlentities($result->four_hours);?></td> <td><?php echo htmlentities($result->all_day);?></td> <td><?php echo htmlentities($result->twentyfour_hours);?></td> <td><?php echo htmlentities($result->two_to_nine_days);?></td> <td><?php echo htmlentities($result->ten_days_plus);?></td> <td><?php echo htmlentities($result->seasonal_discount);?></td> <td><?php echo htmlentities($result->ModelYear);?></td> <td><?php echo htmlentities($result->status);?></td> <td><a href="edit-vehicle.php?id=<?php echo $result->id;?>"><i class="fa fa-edit"></i></a> <a href="manage-vehicles.php?del=<?php echo $result->id;?>" onclick="return confirm('Do you want to delete');"><i class="fa fa-close"></i></a></td> </tr> <?php $cnt=$cnt+1; }} ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> <!-- Loading Scripts --> <script src="js/jquery.min.js"></script> <script src="js/bootstrap-select.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/jquery.dataTables.min.js"></script> <script src="js/dataTables.bootstrap.min.js"></script> <script src="js/Chart.min.js"></script> <script src="js/fileinput.js"></script> <script src="js/chartData.js"></script> <script src="js/main.js"></script> <script> $(document).ready(function() { if ($.fn.DataTable.isDataTable("#zctb")) { $('#zctb').DataTable().destroy(); // Ensure fresh settings } $('#zctb').DataTable({ "pageLength": 50, // Force 25 rows per page "lengthMenu": [ [10, 25, 50, 100, -1], [10, 25, 50, 100, "All"] ], // Show options "retrieve": true // Prevent reinitialization issues }); console.log("Table Initialized with Page Length:", $('#zctb').DataTable().page.len()); }); </script> </body> </html> <?php } ?>