Linux altar53.supremepanel53.com 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64
/ home/ bdapparelinfo/ www/ bjmea-1463dbf457e80c13-admin/ |
|
<?php require_once("check_session.php"); require_once("config.php"); $config_obj = new database_config(); $config_obj->database_connect(); $id =$_REQUEST['id']; $image1 =$_REQUEST['id1']; $Cat_Name = $_REQUEST['cat_name']; $Company_Name = $_REQUEST['company_name']; $Email = $_REQUEST['email']; $Title = $_REQUEST['title']; $Des = $_REQUEST['des']; $Address = $_REQUEST['address']; $City = $_REQUEST['city']; $Country = $_REQUEST['country']; $Telephone = $_REQUEST['telephone']; $Fax = $_REQUEST['fax']; $Website = $_REQUEST['website']; $Contact_Person = $_REQUEST['contact_person']; $Add_Position = $_REQUEST['add_position']; $date = date('M d Y'); $files_temp=$_FILES['image']['tmp_name']; $image_name=$_FILES['image']['name']; $image_type=$_FILES['image']['type']; $image_size=$_FILES['image']['size']; $t=time(); $iname=$t.$image_name; $files_dir="upload/"; if(copy($files_temp,"$files_dir/$iname")) { $image=$iname; } else{ $image=$image1; } ////////////////////////////////////////////// if(mysql_query("UPDATE add_list SET cat_name = '$Cat_Name',company_name = '$Company_Name',email='$Email',title='$Title',des = '$Des', Address = '$Address', City = '$City', Country = '$Country', Telephone = '$Telephone', Fax = '$Fax', Website = '$Website', Contact_Person = '$Contact_Person', add_positions='$Add_Position', dob='$date',image_name = '$image' WHERE id ='$id'")) { echo"Successfully Created!"; echo"<html>"; echo"<head> <meta http-equiv=refresh content=0;url=add_manage.php>"; echo"</head>"; echo"</html> "; } else {echo"Failed to create new section";} ?>