ok

Mini Shell

Direktori : /home2/selectio/public_html/lilyexpresslive/software/admin/
Upload File :
Current File : /home2/selectio/public_html/lilyexpresslive/software/admin/driver-edit.php

<?php require_once('header.php'); ?>
<?php
if(isset($_POST['form1'])) {
	$valid = 1;

	if(empty($_POST['driver_name'])) {
		$valid = 0;
		$error_message .= 'Driver Name can not be empty<br>';
	}
	if($_POST['transport_id']=='0') {
		$valid = 0;
		$error_message .= 'Please Select Transport Name<br>';
	}
	

	if($valid == 1) {

        	$statement = $pdo->prepare("UPDATE tbl_driver SET transport_id=?,driver_name=?,driver_mobile=?,vehicle_no=? WHERE id=?");
    		$statement->execute(array($_POST['transport_id'],$_POST['driver_name'],$_POST['driver_mobile'],$_POST['vehicle_no'],$_REQUEST['id']));

	    $success_message = 'Driver Details is updated successfully!';
	}
}
?>

<?php
if(!isset($_REQUEST['id'])) {
	header('location: logout.php');
	exit;
} else {
	// Check the id is valid or not
	$statement = $pdo->prepare("SELECT * FROM tbl_driver WHERE id=?");
	$statement->execute(array($_REQUEST['id']));
	$total = $statement->rowCount();
	$result = $statement->fetchAll(PDO::FETCH_ASSOC);
	if( $total == 0 ) {
		header('location: logout.php');
		exit;
	}
}
?>
<section class="content-header">
	<div class="content-header-left">
		<h1>Edit Driver</h1>
	</div>
	<div class="content-header-right">
		<a href="driver.php" class="btn btn-primary btn-sm">View All</a>
	</div>
</section>

<?php
$statement = $pdo->prepare("SELECT * FROM tbl_driver WHERE id=?");
$statement->execute(array($_REQUEST['id']));
$result = $statement->fetchAll(PDO::FETCH_ASSOC);
foreach ($result as $row) {
	$driver_name = $row['driver_name'];
	$driver_mobile = $row['driver_mobile'];
	$vehicle_no = $row['vehicle_no'];
	$transport_id = $row['transport_id'];

}
?>

<section class="content">

	<div class="row">
		<div class="col-md-12">

			<?php if($error_message): ?>
			<div class="callout callout-danger">
				<p>
					<?php echo $error_message; ?>
				</p>
			</div>
			<?php endif; ?>

			<?php if($success_message): ?>
			<div class="callout callout-success">
				<p><?php echo $success_message; ?></p>
			</div>
			<?php endif; ?>
			
			<form class="form-horizontal" action="" method="post" enctype="multipart/form-data">
				<div class="box box-info">
					<div class="box-body">
					<div class="form-group">
							<label for="" class="col-sm-2 control-label">Transport Name <span>*</span></label>
							<div class="col-sm-6">
							    <select class="form-control" name="transport_id" id="transport_id">
							        <option value="0" >Select Transport Name </option>
							        
							        <?php
							        $statement = $pdo->prepare("SELECT * FROM tbl_transport ORDER BY id ASC");
									$statement->execute();
									$result = $statement->fetchAll(PDO::FETCH_ASSOC);	
									foreach ($result as $row) {
										?>
										<option value="<?php echo $row['id']; ?>" <?php if($transport_id==$row['id']){ echo "selected"; } ?>><?php echo $row['transport_name']; ?></option>
										<?php
									}
									?>
							    </select>
							</div>
						</div>
						<div class="form-group">
							<label for="" class="col-sm-2 control-label">Driver Name<span>*</span></label>
							<div class="col-sm-6">
								<input type="text" autocomplete="off" class="form-control" name="driver_name" value="<?php echo $driver_name; ?>">
							</div>
						</div>
						<div class="form-group">
							<label for="" class="col-sm-2 control-label">Driver Mobile</label>
							<div class="col-sm-6">
								<input type="text" autocomplete="off" class="form-control" name="driver_mobile" value="<?php echo $driver_mobile; ?>">
							</div>
						</div>
						<div class="form-group">
							<label for="" class="col-sm-2 control-label">Vehicle Number</label>
							<div class="col-sm-6">
								<input type="text" autocomplete="off" class="form-control" name="vehicle_no" value="<?php echo $vehicle_no;?>">
							</div>
						</div>
					
						<div class="form-group">
							<label for="" class="col-sm-2 control-label"></label>
							<div class="col-sm-6">
								<button type="submit" class="btn btn-success pull-left" name="form1">Submit</button>
							</div>
						</div>
					</div>
				</div>
			</form>
		</div>
	</div>

</section>

<?php require_once('footer.php'); ?>

Zerion Mini Shell 1.0