-2

在我的数据库表中row()中,“product_size”列中有“24、26、28、30”大小。

查询后,我想在 viewProduct.php 页面中查看,如:

<'option value=" ">' size <'/option>`<br />
<'option value="24"> 24 <'/option>`<br />
<'option value="26"> 26 <'/option>`<br />
<'option value="28"> 28 <'/option>`<br />
<'option value="30"> 30 <'/option><br/>

就像foreach()循环一样。

4

2 回答 2

0

这段代码是你需要的:

<select name="product[location_id]">
<?php
foreach($product_locations as $product_location) :
    echo "<option value=\"".$product_location['id']."\" ".($product_location['id'] == $product['product_location'] ? "selected=\"yes\"" : "").">".$product_location['title']."</option>";
endforeach;
?>
</select>

当然,您需要将其调整为您的表格/列,因为您没有提供任何有关它的信息。

于 2013-06-02T04:30:06.073 回答
0

使用爆炸方法;

$array=explode(",",$row['product_size']);
for($i=0;$i<count($array);$i++) {
  echo $array[$i];
  enter code here
}
于 2013-06-02T04:31:18.423 回答