php怎么从数据库里获取到值在html页面上输出?

2024年11月20日 16:43
有1个网友回答
网友(1):

用php判断查询数组是否为空,不为空就将给html赋值,控制是否显示图片。

$sql = "select * from ‘颂孙拆_goods_attr‘ where ‘attr_value‘=‘ ’";php查询,$res=mysql_query($sql);php处理,$arr = mysql_fetch_assoc($res);转为数组,后面就是自己判断数组是否为空和给html模板赋值的事情了。

$selv=array(1,2,3,4,5);//下拉列表值

$dbv=3;

foreach($selv as $s){

$issl='';

if($s==$dbv)  $issl='selected';

$str.=""; 

}

echo ''凯中;

?>