×

php商品打分

php商品打分(php分销代码分析)

admin admin 发表于2023-03-28 00:16:09 浏览45 评论0

抢沙发发表评论

本文目录一览:

请 php 简单 产品分类代码

商品分类展示

设置商品分类显示不仅可使该购物系统的所有商品都分门别类的显示出来,而且为用户选择商品提供了很大的方便。首先应该建立一个单独的type表用来存储商品大类,之后在shangpin表中增加一个typeid字段,该字段中存储的内容是商品大类id值,利用这个值就可以确定该商品属于那一类。商品分类展示是在showfenlei.php中完成的,代码如下:

!--*******************************showfenlei.php*******************************--

?php

include("top.php");

?

table width="800" height="438" border="0" align="center" cellpadding="0" cellspacing="0"

tr

td width="200" height="438" valign="top" bgcolor="#E8E8E8"div align="center"

?php include("left.php");?

/div/td

td width="10" background="images/line2.gif" /td

td width="590" valign="top"table width="590" height="20" border="0" align="center" cellpadding="0" cellspacing="0"-php商品打分

tr

tddiv align="left" 

?php

$sql=mysql_query("select * from type order by id desc",$conn);

$info=mysql_fetch_object($sql);

if($info==false)

{

echo "本站暂无商品!";

}

else

{

do

{

echo "a href='showfenlei.php?id=".$info-id."'".$info-typename." /a";

}

while($info=mysql_fetch_object($sql));

}

?

/div/td

/tr

/table

?php

if($_GET[id]=="")

{

$sql=mysql_query("select * from type order by id desc limit 0,1",$conn);

$info=mysql_fetch_array($sql);

$id=$info[id];

}

else

{

$id=$_GET[id];

}

$sql1=mysql_query("select * from type where id=".$id."",$conn);

$info1=mysql_fetch_array($sql1);

$sql=mysql_query("select count(*) as total from shangpin where typeid='".$id."' order by addtime desc ",$conn);-php商品打分

$info=mysql_fetch_array($sql);

$total=$info[total];

if($total==0)

{

echo "div align='center'本站暂无该类产品!/div";

}

else

{

?

table width="550" height="25" border="0" align="center" cellpadding="0" cellspacing="0"

tr

tddiv align="left"span style="color: #666666; font-weight: bold"span style="color: #000000"本类商品/span?php echo $info1[typename];?/span-php商品打分

/div/td

/tr

/table

table width="550" height="10" border="0" align="center" cellpadding="0" cellspacing="0"

tr

td background="images/line1.gif"/td

/tr

/table

table width="550" height="70" border="0" align="center" cellpadding="0" cellspacing="0"

?php

$pagesize=10;

if ($total=$pagesize)

{

$pagecount=1;

}

if(($total%$pagesize)!=0)

{

$pagecount=intval($total/$pagesize)+1;

}

else

{

$pagecount=$total/$pagesize;

}

if(($_GET[page])=="")

{

$page=1;

}

else

{

$page=intval($_GET[page]);

}

$sql1=mysql_query("select * from shangpin where typeid=".$id." order by addtime desc limit ".($page-1) *$pagesize.",$pagesize ",$conn);-php商品打分

while($info1=mysql_fetch_array($sql1)) //显示商品信息

{

?

……

?php

}

?

/table

table width="550" height="25" border="0" align="center" cellpadding="0" cellspacing="0"

tr

tddiv align="right"  本站共有该类商品 

?php

echo $total;

?

 件 每页显示 ?php echo $pagesize;? 件 第 ?php echo $page; ?  页/共 ?php echo $pagecount; ? 页

?php

if($page=2) //商品分页显示

{

?

a href="showfenlei.php?id=?php echo $id;?page=1" title="首页"font face="webdings" 9 /font/a

a href="showfenlei.php?id=?php echo $id;?page=?php echo $page-1;?" title="前一页"font face="webdings" 7 /font/a-php商品打分

?php

}

if($pagecount=4){

for($i=1;$i=$pagecount;$i++){

?

a href="showfenlei.php?id=?php echo $id;?page=?php echo $i;?"?php echo $i;?/a

?php

}

}

else

{

for($i=1;$i=4;$i++){

?

a href="showfenlei.php?id=?php echo $id;?page=?php echo $i;?"?php echo $i;?/a

?php

}

?

a href="showfenlei.php?id=?php echo $id;?page=?php echo $page-1;?" title="后一页"font face="webdings" 8 /font/a-php商品打分

a href="showfenlei.php?id=?php echo $id;?page=?php echo $pagecount;?" title="尾页"font face="webdings" : /font/a-php商品打分

?php

}

?

/div/td

/tr

/table

?php

}

?

/td

/tr

/table

?php

include("bottom.php");

?

PHP关于打分程序的思路和算法求助各位

不就是取到相应的post值,如果被勾选了就用总分减去相应的分数,然后计算总分么?

数据库可以这样设计:

id ,per_info_count,work_count,interview_count..共六项count

id记录id值。提交时根据这个id值更新相应的值。

更多问题可以去php中文网问答社区提问,大神在线帮你解决,希望对你有帮助

PHP 商品分类

不用太在意区分父类,与子类

因为父类与子类在同一个表中通过parent_id建立等级的!

点击父类时传递父类本身的ID:product.asp?pid=4

点击子类时也是传递子类本身的ID:product.asp?pid=12

在product.asp页面里通过这个pid查询商品(无论父类或子类)

sql = "select * from goods where pid ="request("pid")

PHP商品分类

其实一个表就可以做到了,实现一个无限级分类,如:

uid uname ucontent pid

商品id 名称 描述 关联pid

重点就在这个pid上,当一个商品为父类时,pid为0,当他为某一个商品的子类

时,pid即为父类的id,以此来无限极关联;

PS: 这样,当你每次点一个商品的同时,你要查询表的数据。根据需求

显示商品预览效果;

至于你说的不显示,代码不贴出来大家怎么给你看!