📄 delete_product_focus.php
字号:
<?
include "logincheck.php";
include "myconnect.php";
///////////////////////////////////////////////////////////////////////////////
/// THE CODE OF THIS SCRIPT HAS BEEN DEVELOPED BY SOFTBIZ SOLUTIONS /////
/// AND IS MEANT TO BE USED ON THIS SITE ONLY AND IS NOT FOR REUSE, /////
/// RESALE OR REDISTRIBUTION. /////
/// IF YOU NOTICE ANY VIOLATION OF ABOVE PLEASE REPORT AT: /////
/// admin@softbizscripts.com /////
/// http://www.softbizscripts.com /////
/// http://www.softbizsolutions.com /////
///////////////////////////////////////////////////////////////////////////////
if(count($_POST)>0)
{
$id=(int)$_REQUEST["id"];
$type_id=(int)$_REQUEST["type_id"];
/*changing profiles */
mysql_query("update sbbleads_companyprofiles set sb_productfocus=$type_id where sb_productfocus=$id");
mysql_query("delete from sbbleads_productfocus where sb_id=".$_REQUEST["id"]);
header("Location: "."manage_productfocus.php?msg=".urlencode("Product Focus has been removed from the list."));
die();
}
function main()
{
$id=$_REQUEST["id"];
$cur=mysql_fetch_array(mysql_query("select * from sbbleads_productfocus where sb_id=$id"));
$num=mysql_num_rows(mysql_query("select sb_id from sbbleads_companyprofiles where sb_productfocus=$id"));
?>
<table width="90%" border="0" align="center" cellpadding="1" cellspacing="1">
<tr>
<td valign="top"> <form name="form2" method="post" action="<?php echo $_SERVER['PHP_SELF'];?>" >
<div align="right">
<table width="100%" border="0" cellspacing="10" cellpadding="2">
<tr align="left" bgcolor="#004080">
<td height="25" colspan="2"><font color="#FFFFFF" size="2" face="Arial, Helvetica, sans-serif"><strong> Delete
Product Focus <font color="#FFCC00"><? echo $cur["sb_productfocus"];?></font></strong></font></td>
</tr>
<tr align="center" bgcolor="#F5F5F5">
<td colspan="2"><font size="1" face="Arial, Helvetica, sans-serif">Total
<strong><? echo $num;?></strong> companies have been posted with
Product Focus <strong><? echo $cur["sb_productfocus"];?></strong>.Product Focus of existing companies will be changed to Alternate Product Focus.</font></td>
</tr>
<tr>
<td width="40%" align="right" bgcolor="#F5F5F5"><strong><font size="2" face="Arial, Helvetica, sans-serif">Alternate
Product Focus:</font></strong></td>
<td><font size="2" face="Arial, Helvetica, sans-serif">
<select name="type_id">
<?
$cats=mysql_query("select * from sbbleads_productfocus where sb_id<>$id ");
while($rst=mysql_fetch_array($cats))
{
?>
<option value="<? echo $rst["sb_id"]; ?>"><? echo $rst["sb_productfocus"]; ?></option>
<?
}//end while
?>
</select>
</font></td>
</tr>
<tr>
<td width="40%" align="right" bgcolor="#F5F5F5"> </td>
<td><input name="id" type="hidden" id="id" value="<? echo $_REQUEST["id"];?>">
<input type="submit" name="yes" value="Delete" ></td>
</tr>
<tr align="center" bgcolor="#F5F5F5">
<td colspan="2"><font color="#FF0000" size="2" face="Arial, Helvetica, sans-serif"><strong>This
operation is non reversible. Once changed, information can't be
restored.</strong></font></td>
</tr>
</table>
</div>
</form></td>
</tr>
</table>
<?
} //end of main
include "template.php";?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -