<?php include('site-header.php'); ?>
<!-- end of LOGO CONTAINER -->
<!-- - - - - - - - - - - - - -->
<!-- start of SIDEBAR -->
<!-- - - - - - - - - - - - - -->
<?php include('left-nevigation.php'); ?>
<!-- - - - - - - - - - - - - -->
<!-- end of SIDEBAR -->
<!-- - - - - - - - - - - - - -->
<main id="playground">
<!-- - - - - - - - - - - - - -->
<!-- start of TOP NAVIGATION -->
<!-- - - - - - - - - - - - - -->
<?php
$image_name=$_FILES['logo_image_name']['name'];
$image_names= time()."_".$image_name;
?>
<?php
if(isset($_REQUEST['Insert'])){
$sqlinsrt="insert into tbl_footer_logo set
logo_image_name='$image_names'";
mysqli_query($link,$sqlinsrt);
move_uploaded_file($_FILES['logo_image_name']['tmp_name'],"../header-image/".$image_names);
}
?>
<?php
if(isset($_REQUEST['Updt'])){
$sqlinsrt="update tbl_footer_logo set
logo_image_name='$image_names'
where logo_id='$_REQUEST[img_id]'";
mysqli_query($link,$sqlinsrt);
move_uploaded_file($_FILES['logo_image_name']['tmp_name'],"../header-image/".$image_names);
}
?>
<?php
if($_REQUEST['del_id']!=""){
$del_id=$_REQUEST['del_id'];
$sql="delete from tbl_footer_logo where logo_id='$del_id'";
$data=mysqli_query($link,$sql);
}
?>
<?php
$sql="select * from tbl_footer_logo where 1";
$data=mysqli_query($link,$sql);
$count=mysqli_num_rows($data);
?>
<?php include('site-top-header.php'); ?>
<!-- - - - - - - - - - - - - -->
<!-- end of TOP NAVIGATION -->
<!-- - - - - - - - - - - - - -->
<!-- PAGE TITLE -->
<section id="page-title" class="row">
<div class="col-md-8">
<h1>Update Footer Logo</h1>
<p class="lead">Update your company logo.</p>
<!-- <p>Image Size company logo(260 x 60)Pixel</p> -->
</div>
<div class="col-md-4">
<ol class="breadcrumb pull-right no-margin-bottom">
<li><a href="dashboard.php">Dashboard</a></li>
<li class="active">Update Logo</li>
</ol>
</div>
</section>
<!-- / PAGE TITLE -->
<div class="container-fluid">
<div class="row">
<div class="col-md-4">
</div>
<?php while($result = mysqli_fetch_array($data)){ ?>
<form enctype="multipart/form-data" method="post">
<div class="col-md-4">
<section class="panel tasks-widget"> <img src="../header-image/<?php echo $result['logo_image_name'];?>" class="img-responsive" style="background-color:black;width:100%; height:110px;"> </section>
<div class="text-center"><input type="file" name="logo_image_name"></div>
<input type="hidden" name="img_id" value="<?php echo $result['logo_id'] ?>">
<div class="text-center"><button class="btn btn-primary" name="Updt" style="width:100%;">Update</button></a> </div>
</form>
<form method="post">
<input type="hidden" name="del_id" value="<?php echo $result['logo_id'] ?>">
<!-- <div class="text-center"><button class="btn btn-primary" name="del" style="width:100%;">Delete</button></a> </div> -->
</div>
</form>
<?php } ?>
<div class="col-md-4">
</div>
</div>
<!-- / row -->
</div>
<?php if($count>=1){
echo "";
}else{
?>
<div class="container-fluid" style="margin-top:80px;">
<div class="row">
<div class="col-md-4">
</div>
<form method="post" enctype="multipart/form-data">
<div class="col-md-4">
<div class="text-center"> <input type="file" name="logo_image_name" class="btn btn-primary"> </div>
<div class="text-center"> <button type="submit" name="Insert" class="btn btn-primary" style=" width:100%;">Add Banner </button></div>
</div>
</form>
<div class="col-md-4">
</div>
</div>
<!-- / row -->
</div>
<?php } ?>
<!-- / container-fluid -->
<?php include('site-footer.php'); ?>