⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 post_product.php

📁 通达OA部分源代码
💻 PHP
📖 第 1 页 / 共 3 页
字号:
<?php
include_once'logincheck.php';
include_once("myconnect.php");
include_once("check_msg_function.php");

function RTESafe($strText) {
	//returns safe code for preloading in the RTE
	$tmpString = trim($strText);
	
	//convert all types of single quotes
	$tmpString = str_replace(chr(145), chr(39), $tmpString);
	$tmpString = str_replace(chr(146), chr(39), $tmpString);
	$tmpString = str_replace("'", "&#39;", $tmpString);
	
	//convert all types of double quotes
	$tmpString = str_replace(chr(147), chr(34), $tmpString);
	$tmpString = str_replace(chr(148), chr(34), $tmpString);
//	$tmpString = str_replace("\"", "\"", $tmpString);
	
	//replace carriage returns & line feeds
	$tmpString = str_replace(chr(10), " ", $tmpString);
	$tmpString = str_replace(chr(13), " ", $tmpString);
	
	return $tmpString;
}


$errcnt=0;
if(count($_POST)<>0)		//IF SOME FORM WAS POSTED DO VALIDATION
{
/////////---getting config---------
	$sbq_con='select * from sbbleads_config where sb_id=1';
	$sbrow_con=mysql_fetch_array(mysql_query($sbq_con));
	
	$sbq_gro='select * from sbbleads_groups where sb_memtype='.$_SESSION["sbbleads_memtype"];
	$sbrow_gro=mysql_fetch_array(mysql_query($sbq_gro));

/////////--------------getting information bout user's privious postings
	$sbq_off="select * from sbbleads_products where sb_uid=".$_SESSION["sbbleads_userid"];
	$sbsell_count=mysql_num_rows(mysql_query($sbq_off));
//////////////////////////////////---------------------------

	if( $sbsell_count >= $sbrow_gro["sb_product_cnt"] ) 
	{
 	 header("Location: gen_confirm_mem.php?err=post_product&errmsg=".urlencode("Sorry, some error occurred and unable to post product catalog."));
		die();
	}	
////////////////////--------------------

	$sb_cat_list=str_replace(";",",",$_REQUEST["category"]);
	$cid_list=str_replace(";",",",$_REQUEST["cid"]);
	
	$cat=explode(",",$cid_list);
//	$cat_name=explode(",",$_REQUEST["category"]);
	
	$sb_title=$_REQUEST["sb_title"];
	$sb_description=$_REQUEST["sb_description"];
	$sb_quantity=$_REQUEST["sb_quantity"];
	$sb_keywords=$_REQUEST["sb_keywords"];
	$key=explode(",",$sb_keywords);


	$sb_location=$_REQUEST["sb_location"];
	$sb_min_order=$_REQUEST["sb_min_order"];
	$sb_price_cur_id=$_REQUEST["sb_price_cur_id"];
	$sb_price=$_REQUEST["sb_price"];
	$sb_samples_available=$_REQUEST["sb_samples_available"];
	$sb_product_status=$_REQUEST["sb_product_status"];
	$sb_delivery_time=$_REQUEST["sb_delivery_time"];
	$sb_payment_mode='-1';
	if(isset($_REQUEST["sb_cash"]) && ($_REQUEST["sb_cash"]=='yes') )
		$sb_payment_mode.=',cash';
	if(isset($_REQUEST["sb_cheque"]) && ($_REQUEST["sb_cheque"]=='yes') )
		$sb_payment_mode.=',cheque';
	if(isset($_REQUEST["sb_credit"]) && ($_REQUEST["sb_credit"]=='yes') )
		$sb_payment_mode.=',credit';
	if(isset($_REQUEST["sb_bank"]) && ($_REQUEST["sb_bank"]=='yes') )
		$sb_payment_mode.=',bank';
	if(isset($_REQUEST["sb_loc"]) && ($_REQUEST["sb_loc"]=='yes') )
		$sb_payment_mode.=',loc';
	if(isset($_REQUEST["sb_escrow"]) && ($_REQUEST["sb_escrow"]=='yes') )
		$sb_payment_mode.=',escrow';
//echo $sb_payment_mode;
	$sb_other_mode=$_REQUEST["sb_other_mode"];
	$sb_shipping_cost=$_REQUEST["sb_shipping_cost"];	
// echo $cid_list."---hello";
		if( $cid_list == '' )
		{
			$errs[$errcnt]="Atleast one Category must be provided";
			$errcnt++;
		}
		elseif(count($cat) > $sbrow_gro["sb_cat_cnt"])
		{
			$errs[$errcnt]="Too many Categories provided";
			$errcnt++;
		}
		
		
		if ( strlen(trim($sb_title)) == 0 )
		{
			$errs[$errcnt]="Title must be provided";
			$errcnt++;
		}
		elseif(preg_match ("/[<>&]/", $sb_title))
		{
			$errs[$errcnt]="Title can not have any special character i.e. & < >";
			$errcnt++;
		}

		if ( strlen(trim($sb_description)) == 0 )
		{
			$errs[$errcnt]="Description must be provided";
			$errcnt++;
		}
		elseif ( strlen(strip_tags($sb_description)) > $sbrow_con['sb_description_length'] )
		{
			$errs[$errcnt]="Description length must not exceed ".$sbrow_con['sb_description_length']." characters";
			$errcnt++;
		}
		elseif( $sbrow_con["sb_approval_type_offer"] == 'auto')
		{
			if ( check_msg($sb_description,0) == 'yes' )
			{
				$errs[$errcnt]="Description must not contain bad words";
				$errcnt++;
			}
		}
		
		if ( !is_numeric($sb_quantity) || ($sb_quantity <= 0) )
		{
			$errs[$errcnt]="Quantity must be non-zero positive integer";
			$errcnt++;
		}
		
		if ( strlen(trim($sb_keywords)) == 0 )
		{
			$errs[$errcnt]="Keywords must be provided";
			$errcnt++;
		}
		elseif(preg_match ("/[<>&]/", $sb_keywords))
		{
			$errs[$errcnt]="Keywords can not have any special character i.e. & < >";
			$errcnt++;
		}
		elseif(count($key) > $sbrow_gro["sb_keyword_cnt"])
		{
			$errs[$errcnt]="Too many keywords provided";
			$errcnt++;
		}
		
		if ( strlen(trim($sb_location)) == 0 )
		{
			$errs[$errcnt]="Location must be provided";
			$errcnt++;
		}
		elseif(preg_match ("/[<>&]/", $sb_location))
		{
			$errs[$errcnt]="Location can not have any special character i.e. & < >";
			$errcnt++;
		}
		
		if ( !is_numeric($sb_min_order) || ($sb_min_order <= 0) )
		{
			$errs[$errcnt]="Minimum Order must be non-zero positive integer";
			$errcnt++;
		}
		
		if ( !is_numeric($sb_price_cur_id) || ($sb_price_cur_id == 0) )
		{
			$errs[$errcnt]="Price currency must be selected";
			$errcnt++;
		}

		if ( !is_numeric($sb_price) || ($sb_price <= 0) )
		{
			$errs[$errcnt]="Price must be non-zero positive number";
			$errcnt++;
		}
		
		if ( !is_numeric($sb_delivery_time) || ($sb_delivery_time < 0) )
		{
			$errs[$errcnt]="Delivery Time must be positive integer";
			$errcnt++;
		}

		if ( !isset($_REQUEST["sb_cash"]) && !isset($_REQUEST["sb_cheque"]) && !isset($_REQUEST["sb_credit"]) && !isset($_REQUEST["sb_bank"]) && !isset($_REQUEST["sb_loc"]) && !isset($_REQUEST["sb_escrow"]) && (strlen(trim($sb_other_mode))==0) )
		{
			$errs[$errcnt]="Atleast one Payment Mode must be provided";
			$errcnt++;
		}

		if ( !is_numeric($sb_shipping_cost) || ($sb_shipping_cost < 0) )
		{
			$errs[$errcnt]="Shipping Cost must be positive number";
			$errcnt++;
		}
		
			
		if($errcnt==0)
		{
			if(!get_magic_quotes_gpc())
			{
				$sb_title=str_replace("$","\$",addslashes($sb_title));
				$sb_description=str_replace("$","\$",addslashes($sb_description));
				$sb_quantity=str_replace("$","\$",addslashes($sb_quantity));
				$sb_keywords=str_replace("$","\$",addslashes($sb_keywords));
				$sb_location=str_replace("$","\$",addslashes($sb_location));
				$sb_samples_available=str_replace("$","\$",addslashes($sb_samples_available));
				$sb_product_status=str_replace("$","\$",addslashes($sb_product_status));
				$sb_other_mode=str_replace("$","\$",addslashes($sb_other_mode));
			}
			else
			{
				$sb_title=str_replace("$","\$",$sb_title);
				$sb_description=str_replace("$","\$",$sb_description);
				$sb_quantity=str_replace("$","\$",$sb_quantity);
				$sb_keywords=str_replace("$","\$",$sb_keywords);
				$sb_location=str_replace("$","\$",$sb_location);
				$sb_samples_available=str_replace("$","\$",$sb_samples_available);
				$sb_product_status=str_replace("$","\$",$sb_product_status);
				$sb_other_mode=str_replace("$","\$",$sb_other_mode);
			}
			$sb_min_order=(int)$sb_min_order;
			$sb_price_cur_id=(int)$sb_price_cur_id;
			$sb_price=$sb_price;
			$sb_delivery_time=(int)$sb_delivery_time;
			$sb_shipping_cost=$sb_shipping_cost;	
			
			$sb_postedon=date("YmdHis",time());
			$sb_approved='yes';
			$sb_uid=$_SESSION["sbbleads_userid"];
		//	$sb_expireson=;
		$sbq_con='select * from sbbleads_config where sb_id=1';
		$sbrow_con=mysql_fetch_array(mysql_query($sbq_con));
		if($sbrow_con['sb_approval_type_offer']=='auto')
		{
			$sb_new='no';
			$sb_approved='yes';
			$sb_msg='Your product catalog has been posted.';
		}
		else
		{
			$sb_new='yes';
			$sb_approved='no';
			$sb_msg='Your product catalog has been sent for admin approval.';
		}
		
		$sbqi_off="Insert into `sbbleads_products` (sb_uid, sb_title, sb_description, sb_quantity, sb_postedon, sb_keywords, sb_location, sb_min_order, sb_price_cur_id, sb_price, sb_samples_available, sb_product_status, sb_delivery_time, sb_payment_mode, sb_other_mode, sb_shipping_cost, sb_approved, sb_new) values ($sb_uid, '$sb_title', '$sb_description', $sb_quantity, $sb_postedon, '$sb_keywords', '$sb_location', $sb_min_order, $sb_price_cur_id, $sb_price, '$sb_samples_available', '$sb_product_status', $sb_delivery_time, '$sb_payment_mode', '$sb_other_mode', $sb_shipping_cost, '$sb_approved', '$sb_new')";
	//	die($sbqi_off);
		mysql_query($sbqi_off);
		if(mysql_affected_rows()>0)
		{
///-adding to categories
			$sbq_off="select max(sb_id) as max_id from sbbleads_products where 1";
			$sbrow_off=mysql_fetch_array(mysql_query($sbq_off));
			$sb_offer_id=$sbrow_off["max_id"];
			foreach($cat as $sb_value)
			{
				$sbq_off_cat="select * from sbbleads_product_cats where sb_offer_id=$sb_offer_id and sb_cid=$sb_value";
				//echo $sbq_off_cat;
//				$sbrs_off_cat=
				if( mysql_num_rows(mysql_query($sbq_off_cat)) > 0 )
					continue;		//skips if record already exists
				$sbqi_off_cat="insert into sbbleads_product_cats (sb_offer_id, sb_cid) values ($sb_offer_id, $sb_value)";
				mysql_query($sbqi_off_cat);
			}
///////////////////////--------------------------------------------------------------
/////////////////////////////-------------------------------------------------------

////--------mail to member/admin if approval is not auto
if($sbrow_con['sb_approval_type_offer']<>'auto')
{
			//SENDING MAIL TO MEMBER////////////////////////
	//	$sbq_res="select * from sbrrs_resources where sbres_id=$sbres_id";
	//	$sbrow_res=mysql_fetch_array(mysql_query($sbq_res));
		
		$sbq_mem="select * from sbbleads_members where sb_id=".$_SESSION["sbbleads_userid"];
		$sbrow_mem=mysql_fetch_array(mysql_query($sbq_mem));
				
		$rs_con=mysql_fetch_array(mysql_query("select * from sbbleads_config where sb_id=1"));
		$sb_null_char=$rs_con["sb_null_char"];
		$login_url=$rs_con["sb_site_root"]."/signin.php";
//		$sbresource_url=$rs_con["sbsite_addr"]."/details_res.php?sbres_id=$sbres_id";


//Reads email to be sebt
		$sbq_mail="SELECT * FROM sbbleads_mails where sb_mailid=6";
		$sbrs_mail=mysql_query($sbq_mail);
		if ( $sbrow_mail=mysql_fetch_array($sbrs_mail)  )
  		{
			$from =$sbrow_mail["sb_fromid"];
			$to = $sbrow_mem["sb_email"];
			$subject =$sbrow_mail["sb_subject"];
		    $header="From:" . $from . "\r\n" ."Reply-To:". $from  ;

			$body=str_replace("%email%", $sbrow_mem["sb_email"],str_replace("%password%",$sbrow_mem["sb_password"],str_replace("%lname%", $sbrow_mem["sb_lastname"],str_replace("%fname%",$sbrow_mem["sb_firstname"],str_replace("%username%",$sbrow_mem["sb_username"], $sbrow_mail["sb_mail"]) )))); 
				
			$body=str_replace("%signup_url%",$sb_null_char,str_replace("%login_url%",$login_url,$body));

		 	$body=str_replace("%message_text%",$sb_null_char,str_replace("%message_title%",$sb_null_char,str_replace("%sender_username%",$sb_null_char,str_replace("%message_date%",$sb_null_char,$body))));	
 
 			$body=str_replace("%visitor_name%",$sb_null_char,$body);
		
			$body=str_replace("%offer_title%",$sb_title,str_replace("%offer_url%",$sb_null_char,str_replace("%offer_id%",$sb_null_char,$body)));

	 	if(isset($sbrow_mail["sb_html_format"])&&($sbrow_mail["sb_html_format"]=="yes"))
		{
			$header .= "\r\nMIME-Version: 1.0";
			$header .= "\r\nContent-type: text/html; charset=iso-8859-1\r\n";
//			$body=str_replace("\n","<br>",$body);
		}
	 
// 	echo "--from:-$from----to:-$to---sub:-$subject----head:-$header----";
//	echo "<pre>$body</pre>";
	// die();
	if( $sbrow_mail["sb_status"]=='yes')
 		mail($to,$subject,$body,$header);
  }

//////////////////////////////////////////////////////////
/////          Sending mail to admin

$rs0=mysql_fetch_array(mysql_query("select * from sbbleads_config where sb_id=1"));
//$login_url=$site_root[0]."/signinform.php";

//Reads email to be sebt
$sbq_mail="SELECT * FROM sbbleads_mails where sb_mailid=7";
$sbrs_mail=mysql_query($sbq_mail);

if ( $sbrow_mail=mysql_fetch_array($sbrs_mail)  )
  {
			 $from =$sbrow_mail["sb_fromid"];
			 $to = $rs0["sb_admin_email"];
			 $subject =$sbrow_mail["sb_subject"];
		     $header="From:" . $from . "\r\n" ."Reply-To:". $from  ;

// 	 $body=$rs["mail"];

			$body=str_replace("%email%", $sbrow_mem["sb_email"],str_replace("%password%",$sb_null_char,str_replace("%lname%", $sbrow_mem["sb_lastname"],str_replace("%fname%",$sbrow_mem["sb_firstname"],str_replace("%username%",$sbrow_mem["sb_username"], $sbrow_mail["sb_mail"]) )))); 
				
			$body=str_replace("%signup_url%",$sb_null_char,str_replace("%login_url%",$login_url,$body));

		 	$body=str_replace("%message_text%",$sb_null_char,str_replace("%message_title%",$sb_null_char,str_replace("%sender_username%",$sb_null_char,str_replace("%message_date%",$sb_null_char,$body))));	
 
 			$body=str_replace("%visitor_name%",$sb_null_char,$body);
		
			$body=str_replace("%offer_title%",$sb_title,str_replace("%offer_url%",$sb_null_char,str_replace("%offer_id%",$sb_null_char,$body)));

	 	if(isset($sbrow_mail["sb_html_format"])&&($sbrow_mail["sb_html_format"]=="yes"))
		{
			$header .= "\r\nMIME-Version: 1.0";
			$header .= "\r\nContent-type: text/html; charset=iso-8859-1\r\n";
//			$body=str_replace("\n","<br>",$body);
		}

// 	echo "--from:-$from----to:-$to---sub:-$subject----head:-$header----";
//	 echo "<pre>$body</pre>";
//	 die();
	if( $sbrow_mail["sb_status"]=='yes')
		 mail($to,$subject,$body,$header);
  }
}		//end if approval <> 'auto'
elseif($sbrow_con['sb_approval_type_offer']=='auto')
{		
/*
//////-------mail to fav cats but if approval is auto 'coz otherwise it would be unapproved			
	$sbq_mail="SELECT * FROM sbbleads_mails where sb_mailid=24";
	$sbrs_mail=mysql_query($sbq_mail);
	if ( ($sbrow_mail=mysql_fetch_array($sbrs_mail))  && ($sbrow_mail['sb_status']=='yes'))
	{
////////----------getting full path ids 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -