博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php 折扣计算,php 团购折扣计算公式
阅读量:5733 次
发布时间:2019-06-18

本文共 2459 字,大约阅读时间需要 8 分钟。

$price=$row[‘price‘]; //原价

$nowprice=$row[‘nowprice‘]; //现价

$jiesheng=$price-$nowprice; //节省金额

//$discount折扣计算

if ( $nowprice > 0 )

{

$discount = round(10 / ($price / $nowprice), 1);

}

else

{

$discount = 0;

}

if ( $discount <= 0 ) $discount = 0;

完整代码:

徐州汽车网最新团购

body{margin: 0 auto; text-align:center; padding:0}

ul,li{margin:0; padding:0;list-style:none}

body,td,th {

font-size: 12px;

}

a:link {

color: #333333;

text-decoration: none;

}

a:visited {

text-decoration: none;

color: #333333;

}

a:hover {

text-decoration: none;

color: #FF3300;

}

a:active {

text-decoration: none;

}

img{border:0;}

/*Group buy*/

.groupbuy{ width:970px; border:1px solid #FEDDBA; padding:4px;}

.groupbuy ul{width:146px; border:1px solid #FEDDBA; padding:2px; height:180px; float:left; margin:0 4px;}

.groupbuy ul li{ text-align:center;}

.groupbuy ul li.realprice{ background:#333; background:url(../images/groupprice.jpg) no-repeat right top; height:40px; line-height:40px; font-family:"Microsoft YaHei",Arial;display:block; font-weight:bold;color:#fff;}

.groupbuy ul li.realprice img{ cursor:pointer;}

.groupbuy ul li.realprice span{float:left; margin:0; padding:0}

.groupbuy ul li.realprice span b{ font-size:18px;}

.groupbuy ul li.supprice{ text-align:center;}

.groupbuy ul li.supprice div table td{ background:#FDF4E3; text-align:center; }

error_reporting(0);

header("Content-type: text/html; charset=gbk");

$con = mysql_connect("localhost","mysql用户名","mysql密码");

if (!$con)

{

die(‘Could not connect: ‘ . mysql_error());

}

// some code

mysql_select_db("tuanpcqc");

mysql_query("set names gbk");

$sql="select * from cenwor_tttuangou_product order by id desc limit 0,3";

$result = mysql_query($sql);

?>

while($row = mysql_fetch_array($result, MYSQL_BOTH)) {

$id=$row[‘id‘];

$name = $row[‘name‘];

$price = $row[‘price‘];

$price=$row[‘price‘];

$nowprice=$row[‘nowprice‘];

$jiesheng=$price-$nowprice;

if ( $nowprice > 0 )

{

$discount = round(10 / ($price / $nowprice), 1);

}

else

{

$discount = 0;

}

if ( $discount <= 0 ) $discount = 0;

$pic=$row[‘img‘];

$pic_arr=split(",",$pic);

$picadd=$pic_arr[0];

//echo $picadd;

$sql2="select * from cenwor_tttuangou_uploads where id=".intval($picadd);

$result2 = mysql_query($sql2);

$picurl = mysql_result($result2, 0,"url");

$picurl=str_replace("/demo/","/thumb/200x121/demo/",$picurl);

?>

  • =$nowprice?>
  • 原价 折扣 节省
    =$price?> =$discount?>折 ¥=$jiesheng?>

}

?>

function getpic($pic){

}

mysql_close($con);

?>

原文:http://www.jb51.net/article/28975.htm

转载地址:http://kaowx.baihongyu.com/

你可能感兴趣的文章
我的友情链接
查看>>
Linux磁盘信息工具---di
查看>>
sqlite数据库
查看>>
重定向 1>&2 2>&1
查看>>
UbuntuLTSP
查看>>
VMware ESXI虚拟机及虚拟系统修改MAC地址的方法
查看>>
从此SQLPLUS有了Top命令
查看>>
Windows中启动Appium和模拟器
查看>>
python小技巧--通过字典的值(value)求键(key)
查看>>
arm-linux-androideabi-addr2line使用
查看>>
Windows Server 2003 和 Windows XP x86 上的最新漏洞补丁
查看>>
我的友情链接
查看>>
润乾集算报表多样性数据源之mongodb
查看>>
我的友情链接
查看>>
Non HTTP response code: java.net.ConnectException
查看>>
socket: Too many open files
查看>>
3.MySQL Replication(MySQL 复制)
查看>>
Oracle如何配置多个监听器
查看>>
一个程序员的成长的六个阶段
查看>>
MySQL日志
查看>>