我想从mysql数据库中检索数据并存储在数组中。稍后我会用html显示数据。
以下是我的代码段:
select co_no from faculty_co where course_code='$course1_code';
输出将显示总共5 co_no
个值。我想将这些值存储在一个数组中,并使用select标签在html中显示为下拉菜单。
我是php的新手。请告诉我如何检索和存储它。
答案 0 :(得分:0)
答案 1 :(得分:0)
我'老了',而不是程序员,所以我倾向于在程序上做事。
我这样做:
include('path/to/connection/stateme.nts'); // the connection is a variable '$db'
$query = "my query";
$result = mysqli_query($db,$query);
$rows = array(); //initialise array
while($row = mysqli_fetch_assoc($result)){
$rows[] = $row;
}
现在您可以将其存储为json_encoded字符串,或者将其保留为数组供以后使用。