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/

//home/bdapparelinfo/www/add_list_submit.php

<?php
require_once("config.php");

$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="bjmea-admin/upload/";

copy($files_temp, "$files_dir/$iname");	
//////////////////////////////////////////////
$sql = "select * from add_list where  cat_name='".$Cat_Name."' and company_name='".$Company_Name."'";

	$ssql = mysql_query($sql);

	$check = mysql_num_rows($ssql);
	if($check >= 1)

	{
		$ErrorMessage = "This Company Name already exist.";

		header("Location: post_free_add.php?ErrorMessage=$ErrorMessage");

	}

	else

	{	

$qu=mysql_query("INSERT INTO  add_list VALUES('','$iname','$Cat_Name', '$Company_Name', '$Title', '$Email', '$des', '$Address', '$City', '$Country', '$Telephone', '$Fax', '$Website', '$Contact_Person', '$date', 'Free Post','0')") or  die (mysql_error());
 if ($qu)
 	{ 
	
	$Message ="Successfully Created! We Wi'll Contact Soon";
	
	header("Location: post_free_add.php?Message=$Message");

 
}
else {echo"Failed to create new section";}
}

?>