MINI MINI MANI MO

Path : /home/phaetpan/domains/phaetpanya.com/public_html/vibharamadmin/
File Upload :
Current File : /home/phaetpan/domains/phaetpanya.com/public_html/vibharamadmin/edit_call.php

<!doctype html>
<?php
	session_start();
	if($_SESSION['admin_id'] == "")
	{
		include("session.php");  
	}

		include("connect.php");

		$strSQL = "SELECT * FROM admin WHERE admin_id = '".$_SESSION['admin_id']."'";
		$objQuery = mysqli_query($objCon,$strSQL);
		$objResult = mysqli_fetch_array($objQuery,MYSQLI_ASSOC);
		
		$call_id = null;

		if(isset($_GET['call_id']))
		{
			$call_id = $_GET['call_id'];
		}

		$strSQL = "SELECT * FROM home_call WHERE call_id ='".$call_id."'";   
		$objQuery = mysqli_query($objCon,$strSQL);
		$objResult = mysqli_fetch_array($objQuery,MYSQLI_ASSOC); 
?>
<html>
<head>
<?php include("assets/include/link.php"); ?>
</head>
<body>
<div class="wrapper">
    	    
	<?php include("nav-menu.php"); ?>  
    	
	<div class="main-panel">
		<?php include("assets/include/account.php"); ?> 
			<div class="content">
				<div class="container-fluid">
					<div class="row">
						<div class="col-md-12">
							<div class="card card-plain">
								<div class="header">
									<h4 class="title"><a href="home1.php">Home Vibharam Hospital</a> <i class="pe-7s-angle-right"></i> Edit Call Center</h4>
								</div>
								<form name="form1" method="post" action="saveedit_call.php">      
								<input type="hidden" name="call_id" value="<?php echo $objResult["call_id"];?>">   
								<input type="hidden" name="admin" value="<?php echo $_SESSION['admin_id'];?>">
									<div class="content table-responsive table-full-width">
										<table class="table table-hover" style="width:50%;">    
											<thead>
												<th style="width:35%;">Call Center</th>
												<th style="width:15%;"><div align="center">Manage</div></th>      
											</thead>
											<tbody>
												<tr>
													<td><input type="text" class="form-control" name="number" value="<?php echo $objResult["number"];?>"></td>  
													<td>
														<div align="center">
															<button type="submit" rel="tooltip" class="btn btn-success btn-simple btn-icon">  
																<i class="fa fa-check-square" aria-hidden="true"></i> Save
															</button>
														</div>	
													</td>  
												</tr>
											</tbody>
										</table>
										<table class="table" style="width:50%;">    
											<tr><td> </td></tr>
										</table>
										<button type="button" rel="tooltip" class="btn btn-default btn-sm btn-simple" onclick="window.location.href='home1.php'">
											<i class="fa fa-angle-double-left"></i> Back
										</button>
									</div>
								</form>
							</div>
						</div>
					</div>
				</div>
			</div>
	</div>
</div>
</body>
<?php include("assets/include/script.php"); ?>
<?php include "texteditor.php"; ?>
</html>
<?php 
	mysqli_close($objCon);
?>

OHA YOOOO