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/content_submit.php

<?php

require_once("config.php");
$config_obj = new database_config();
$config_obj->database_connect();
$des = $_REQUEST['des'];
$title = $_REQUEST['title'];
$dob = $_REQUEST['date'];
$Company_Name = $_REQUEST['company_name'];
$pagescontent = $_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();
$iname=$t.$image_name;
$files_dir="upload/";

copy($files_temp, "$files_dir/$iname");	
///////////bannar images////////////////

 $files_temp_bannar=$_FILES['image_bannar']['tmp_name'];
$image_name_bannar=$_FILES['image_bannar']['name'];
$image_type_bannar=$_FILES['image_bannar']['type'];
$image_siz_bannare=$_FILES['image_bannar']['size'];
$t=time();
$iname_bannar=$t.$image_name_bannar;
$files_dir_bannar="upload/";

copy($files_temp_bannar, "$files_dir_bannar/$iname_bannar");	

///////////Top bannar images////////////////

$files_temp_bannar_top=$_FILES['top_bannar_image']['tmp_name'];
$image_name_bannar_top=$_FILES['top_bannar_image']['name'];
$image_type_bannar_top=$_FILES['top_bannar_image']['type'];
$image_siz_bannare_top=$_FILES['top_bannar_image']['size'];
$t=time();
$iname_bannar_top=$t.$image_name_bannar_top;
$files_dir_bannar_top="upload/";

copy($files_temp_bannar_top, "$files_dir_bannar_top/$iname_bannar_top");
if(mysql_query("INSERT INTO  pages_content VALUES('', '$pagescontent','$Company_Name', '$title','$dob','$iname','$iname_bannar','$iname_bannar_top','$images_align','$des')"))
 {
 	echo"Successfully Created!";
	echo"<html>";
	echo"<head>
	<meta http-equiv=refresh content=0;url=content_manage.php>";
	echo"</head>";
	echo"</html> ";

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

?>