我在php中創建了一個函數,我用這個函數的目標是在HTML選擇標記中打印以下行。在HTML選擇標記中使用php函數
<option value="<?php echo $key . $product[$name . '_id'] == $key ? 'selected' : null ?>"><?php echo $value ?></option>
這就是我想出:
function Select($name){
$ids = array();
$values = array();
$query1 = $sql->query("SELECT * FROM '$name'");
while($fetch = $query1->fetch_assoc()){
array_push($ids, $fetch[$name . '_id']);
array_push($values, $fetch[$name]);
}
$names = array_combine($ids, $values);
foreach($names as $key => $value){
return '<option value="' . $key . '"' . $product[$name . '_id'] == $key ? 'selected' : null . '>' . $value . '</option>';
}
}
這似乎並沒有工作,但是當我在HTML選擇標記它的工作把這個直接。它看起來像這樣:
<select name="type" class="chozen" id="type">
<?php
$brand_ids = array();
$brand_values = array();
$query1 = $sql->query("SELECT * FROM brands");
while($brand = $query1->fetch_assoc()){
array_push($brand_ids, $brand['brand_id']);
array_push($brand_values, $brand['brand']);
}
$brands = array_combine($brand_ids, $brand_values);
foreach($brands as $key => $value){
?>
<option value="<?php echo $key ?>"<?php echo $product['brand_id'] == $key ? 'selected' : null ?>><?php echo $value; ?></option>
<?php
}
?>
</select>
有人能指出我出錯的地方,我弄不明白。
不要忘了逃跑$鍵和$值,你輸出他們使用'ヶ輛()'! – 2013-04-11 11:24:09