. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 213.186.33.4 / Your IP :
216.73.216.146 [
Web Server : Apache System : Linux webm002.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : dealkatnwc ( 662330) PHP Version : 7.0.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/dealkatnwc/www/GARAGE/ |
Upload File : |
<?php include('./constant/layout/head.php');?>
<!-- Author Name- Mayuri K.
for any PHP, Codeignitor, Laravel OR Python work contact me at mayuri.infospace@gmail.com
Visit website - www.mayurik.com -->
<?php include('./constant/layout/header.php');?>
<?php //include('./constant/layout/sidebar.php');?>
<?php
//session_start();
//error_reporting(0);
include('./constant/connect1.php');
if(isset($_POST["btn_web"]))
{
extract($_POST);
$target_dir = "./assets/uploadImage/Logo/";
$website_logo = basename($_FILES["website_image"]["name"]);
if($_FILES["website_image"]["tmp_name"]!=''){
$image = $target_dir . basename($_FILES["website_image"]["name"]);
if (move_uploaded_file($_FILES["website_image"]["tmp_name"], $image)) {
@unlink("../assets/uploadImage/Logo/".$_POST['old_website_image']);
} else {
echo "Sorry, there was an error uploading your file.";
}
}
else {
$website_logo =$_POST['old_website_image'];
}
$login_logo = basename($_FILES["login_image"]["name"]);
if($_FILES["login_image"]["tmp_name"]!=''){
$image = $target_dir . basename($_FILES["login_image"]["name"]);
if (move_uploaded_file($_FILES["login_image"]["tmp_name"], $image)) {
@unlink("./assets/uploadImage/Logo/".$_POST['old_login_image']);
} else {
echo "Sorry, there was an error uploading your file.";
}
}
else {
$login_logo =$_POST['old_login_image'];
}
$invoice_logo = basename($_FILES["invoice_image"]["name"]);
if($_FILES["invoice_image"]["tmp_name"]!=''){
$image = $target_dir . basename($_FILES["invoice_image"]["name"]);
if (move_uploaded_file($_FILES["invoice_image"]["tmp_name"], $image)) {
@unlink("./assets/uploadImage/Logo/".$_POST['old_invoice_image']);
} else {
echo "Sorry, there was an error uploading your file.";
}
}
else {
$invoice_logo =$_POST['old_invoice_image'];
}
$background_login_image = basename($_FILES["back_login_image"]["name"]);
if($_FILES["back_login_image"]["tmp_name"]!=''){
$image = $target_dir . basename($_FILES["back_login_image"]["name"]);
if (move_uploaded_file($_FILES["back_login_image"]["tmp_name"], $image)) {
@unlink("../assets/uploadImage/Logo/".$_POST['old_back_login_image']);
} else {
echo "Sorry, there was an error uploading your file.";
}
}
else {
$background_login_image =$_POST['old_back_login_image'];
}
$q1="UPDATE `manage_website` SET `title`='$title',`short_title`='$short_title',`logo`='$website_logo',`footer`='$footer' ,`currency_code`= '$currency_code',`currency_symbol`= '$currency_symbol',`login_logo`='$login_logo',`invoice_logo`='$invoice_logo' , `background_login_image` = '$background_login_image'";
if ($conn->query($q1) === TRUE) {
$_SESSION['success']='Record Successfully Updated';
?>
<script type="text/javascript">
window.location = "manage_website.php";
</script>
<?php
} else {
$_SESSION['error']='Something Went Wrong';
}
?>
<script>
//window.location = "sms_config.php";
</script>
<?php
}
?>
<?php
$que="select * from manage_website";
$query=$conn->query($que);
while($row=mysqli_fetch_array($query))
{
//print_r($row);
extract($row);
$title = $row['title'];
$short_title = $row['short_title'];
$footer = $row['footer'];
$currency_code = $row['currency_code'];
$currency_symbol = $row['currency_symbol'];
$website_logo = $row['logo'];
$login_logo = $row['login_logo'];
$invoice_logo = $row['invoice_logo'];
}
?>
<div class="page-wrapper">
<div class="row page-titles">
<div class="col-md-5 align-self-center">
<h3 class="text-primary">Website Management</h3> </div>
<div class="col-md-7 align-self-center">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="javascript:void(0)">Home</a></li>
<li class="breadcrumb-item active">Website Management</li>
</ol>
</div>
</div>
<!-- Author Name: Mayuri K.
for any PHP, Codeignitor, Laravel OR Python work contact me at mayuri.infospace@gmail.com
Visit website : www.mayurik.com -->
<div class="container-fluid">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="card">
<div class="card-title">
</div>
<div class="card-body">
<div class="input-states">
<form class="form-horizontal" method="POST" enctype="multipart/form-data">
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Title</label>
<div class="col-sm-9">
<input type="text" value="<?php echo $title;?>" name="title" class="form-control">
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Footer</label>
<div class="col-sm-9">
<textarea class="textarea_editor form-control" name="footer" rows="5" placeholder="Enter text ..." style="height:300px;"><?php echo $footer;?></textarea>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Mobile No.</label>
<div class="col-sm-9">
<input type="text" value="<?php echo $short_title;?>" name="short_title" class="form-control">
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Address</label>
<div class="col-sm-9">
<input type="text" value="<?php echo $currency_code;?>" name="currency_code" class="form-control">
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Currency Symbol</label>
<div class="col-sm-9">
<input type="text" value="<?php echo $currency_symbol;?>" name="currency_symbol" class="form-control">
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Website Logo</label>
<div class="col-sm-9">
<image class="profile-img" src="./assets/uploadImage/Logo/<?=$website_logo?>" style="height:35%;width:25%;">
<input type="hidden" value="<?=$website_logo?>" name="old_website_image">
<input type="file" class="form-control" name="website_image">
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Invoice Logo</label>
<div class="col-sm-9">
<image class="profile-img" src="./assets/uploadImage/Logo/<?=$invoice_logo?>" style="height:35%;width:35%;">
<input type="hidden" value="<?=$invoice_logo?>" name="old_invoice_image">
<input type="file" class="form-control" name="invoice_image">
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Login Page Logo</label>
<div class="col-sm-9">
<image class="profile-img" src="./assets/uploadImage/Logo/<?=$login_logo?>" style="height:35%;width:35%;">
<input type="hidden" value="<?=$login_logo?>" name="old_login_image">
<input type="file" class="form-control" name="login_image">
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Background Image For Login Page</label>
<div class="col-sm-9">
<image class="profile-img" src="./assets/uploadImage/Logo/<?=$background_login_image?>" style="height:35%;width:35%;">
<input type="hidden" value="<?=$background_login_image?>" name="old_back_login_image">
<input type="file" class="form-control" name="back_login_image">
</div>
</div>
</div>
<button type="submit" name="btn_web" class="btn btn-primary btn-flat m-b-30 m-t-30">Update</button>
</form>
</div>
</div>
</div>
</div>
</div>
<?php
include('./constant/layout/footer.php');
?>