我想转换此列表。所有数据都存储在.txt文件中。
one
two
three
采用这种格式
<option value="one">one</option>
<option value="two">two</option>
etc
谢谢
答案 0 :(得分:2)
PHP:
<?php
$fc = file_get_contents(FILE_PATH);
$lines = explode("\n", $fc);
$html = '<select>';
foreach($lines as $line)
$html .= '<option value="' . $line . '">' . $line . '</option>';
$html .= '</select>';
echo $html;
注意:您无法在客户端使用JavaScript执行此操作。