- 09/30草莓互联2024年国庆假期...
- 09/15草莓互联2024年中秋节放...
- 08/10宝塔控制面板手动安装Ope...
- 06/07草莓互联2024年端午节放...
- 04/30草莓互联2024年五一劳动...
- 04/03草莓互联2024年清明放假...
- 03/24宝塔控制面板Nginx后端...
- 02/27宝塔面板python2.7升级...
- 02/19宝塔面板站点PCI DSS不合...
- 02/19宝塔面板站点站长工具中点亮HT...
- 02/14宝塔面板https协议无法获取...
- 02/11宝塔Windows面板下SQL...
- 02/02宝塔控制面板利用nginx实现...
- 09/18宝塔控制面板FTP增加Flas...
phpweb已经是国内最强的的开源电子商务系统了,但并非完美,因为任何...
互联网3年一轮回,京东凡客等电商品牌在三年之前也不过是小打小闹,而如...
电商已经成为趋势,传统行业的竞争已经逐渐演变到网络上,也有不少用Weboss...
phpweb系统是固定的模式,适用于大部分行业与需求。但有一些行业还是有自己...
phpweb批量更新商品价格!更新某一个分类的商品售价为指定折扣
phpweb批量更新商品价格!更新某一个分类的商品售价为指定折扣:
代码如下:
<?php
define(“ROOTPATH”, “”);
include(ROOTPATH.”includes/common.inc.php”);
$price = htmlspecialchars( $_POST['price'] );
$isall = htmlspecialchars( $_POST['isall'] );
$catid = htmlspecialchars( $_POST['catid'] );
if($price<1&&!empty($catid)){
if($isall==”on”){
$msql->query( “update pwn_shop_con set price={$price}*price” );
echo “更新全部分类成功!!!! “;
}else{
$msql->query( “update pwn_shop_con set price={$price}*price where catid=’”.$catid.”‘” );
echo “更新分类成功!!!! “;
}
}else{
echo “更新失败!!!! “;
}
?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd“>
<html xmlns=”http://www.w3.org/1999/xhtml“>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title>phpweb交流平台 www.100cm.cn </title>
</head>
<body>
<form id=”form1″ name=”form1″ method=”post” action=”update.php”>
<p>
<label>
折扣
</label>
<input type=”text” name=”price” id=”price” />(一折填写0.1,八五折填写0.85;)
</p>
<p>
<label>
分类id
</label>
<select id=”selcatid” name=”catid” >
<?php
$fsql->query( “select * from pwn_shop_cat order by catpath” );
while ( $fsql->next_record( ) )
{
$lpid = $fsql->f( “pid” );
$lcatid = $fsql->f( “catid” );
$cat = $fsql->f( “cat” );
$catpath = $fsql->f( “catpath” );
$lcatpath = explode( “:”, $catpath );
$i = 0;
for ( ; $i < sizeof( $lcatpath ) – 2; $i++ )
{
$tsql->query( “select catid,cat from pwn_shop_cat where catid=’{$lcatpath[$i]}’” );
if ( $tsql->next_record( ) )
{
$ncatid = $tsql->f( “cat” );
$ncat = $tsql->f( “cat” );
$ppcat .= $ncat.”/”;
}
}
if ( $pid == $lcatid )
{
echo “<option value=’”.$lcatid.”‘ selected>”.$ppcat.$cat.”</option>”;
}
else
{
echo “<option value=’”.$lcatid.”‘>”.$ppcat.$cat.”</option>”;
}
$ppcat = “”;
}?>
</select> <br><br><br>
<input type=”checkbox” name=”isall” id=”isall” />
是不是全部分类
</p>
<p>
<label>
<input type=”submit” name=”button” id=”button” value=”提交” />
</label>
<br><a href=’http://www.100cm.cn>phpweb交流平台 草莓互联</a>
</p>
</form>
</body>
</html>
假如我们资讯/文章对您有所帮助,您可以通过扫描捐赠二维码支持一下我们~
感谢您对我们的支持,您的小小支持让我们有信心走得更远!