我正在构建一个用户表单,我正在使用php来表示表单的值。
<select id="customerInput" name="customerId" style="width:300px">
<? foreach (array_slice($customers, 1) as $row) { ?>
<option value="<? echo $row['CustomerID']; ?>"> <? echo $row['Name']; ?> </option> <? } ?>
</select>
希望您能看到我想要做的事情......我希望选项值为客户ID,并在客户名称字段中写入。
当我运行它并查看源代码时,php被注释掉等不起作用
我不确定为什么......有什么想法?
答案 0 :(得分:2)
试试这个(将<?
更改为<?php
):
<select id="customerInput" name="customerId" style="width:300px">
<?php
foreach (array_slice($customers, 1) as $row) { ?>
<option value="<?php echo $row['CustomerID']; ?>"> <?php echo $row['Name']; ?> </option>
<?php } ?>
</select>