Monkey Albino

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/

/home/bdapparelinfo/www/bjmea-1463dbf457e80c13-admin/edit_main_content_submit.php

<?php require_once("check_session.php");?>
<?php
require_once("config.php");
$config_obj = new database_config();
$config_obj->database_connect();
$id =$_REQUEST['id'];
$image1 =$_REQUEST['id1'];
$image2 =$_REQUEST['id2'];
$image3 =$_REQUEST['id3'];
$des = $_REQUEST['des'];
$title = $_REQUEST['title'];
$pages_content = $_REQUEST['pages_name'];
$images_align = $_REQUEST['img_align'];

$files_temp=$_FILES['image']['tmp_name'];
$image_name=$_FILES['image']['name'];
$image_type=$_FILES['image']['type'];
$image_size=$_FILES['image']['size'];

$t=time();
$files_dir="upload/";
$iname=$t.$image_name;
if(copy($files_temp,"$files_dir/$iname"))
{
$image=$iname;

}	
else{
$image=$image1;

} 
 
if(mysql_query("UPDATE main_content SET content_pages_name='$pages_content', title = '$title', image = '$image',images_align='$images_align',description ='$des' WHERE id ='$id'"))
 {
 	echo"Successfully Update!";
	echo"<html>";
	echo"<head>
	<meta http-equiv=refresh content=0;url=main_content_manage.php>";
	echo"</head>";
	echo"</html> ";

 } 
 
else
{
echo "there is a problem.";
}

?>