如何从php到html <select>选项获得结果?

时间:2016-05-31 09:04:16

标签: php html

我在index.html中有一个select选项,我希望通过php从mySQL获得结果, 但是如何从php获取结果,并自动将结果添加到html index.html的: &lt; form action =&#34; get.php&#34;方法=&#34;后&#34; &GT;     &LT;选择&GT;     &lt; option class =&#34; rm&#34; value =&#34; trap&#34;&gt;&lt;从php获取结果&gt;&lt; / option&gt; .............     &LT; /选择&GT;  &LT; /形式&GT; 如果你能告诉我一个可以做到这一点的工作实例,或者可能有任何类似的想法,那就太好了。

1 个答案:

答案 0 :(得分:0)

我真的不明白你的意思。但你的意思是这样的:

<html>
<body>
<select>
<?php
$root = realpath($_SERVER["DOCUMENT_ROOT"]);
include "$root/config.php";

$something1 = "something1";
$something2 = "something2";

$stmt = $pdo->prepare('SELECT DISTINCT from_mysql FROM customers WHERE something1 = :something1 AND from_mysql != :something2 ORDER BY from_mysql');
$stmt->execute(array(':something1' => $something1, ':something2' => $something2));

$results = $stmt->fetchAll();

if (empty($results)) { 
    echo 'Error: Please contact technical support!'; 
} else {
foreach( $results as $row ) {
    echo "<option>".$row['from_mysql']."</option>";
}
}
?>
</select>
</body>
</html>

P.S。您必须使用索引。 php