Home >Backend Development >PHP Tutorial >循环报表输出

循环报表输出

WBOY
WBOYOriginal
2016-06-13 11:28:39813browse

循环表格输出
用foreach如何进行表格输出?
数据库中的数据是(以下是一个学生的选课信息)


我在页面中
$course=$row['course_id'];
$sql="select * from think_course where id='$course'";
$result=mysql_query($sql);
$row =mysql_fetch_array($result);
取出了数据库中的数据,现在我想用foreach来进行输出以下的形式

no name teacher_name place time
在页面中输出的形式是

foreach要怎么写,新手刚学SQL操作希望各位指教指教,能够贴上代码的话更好。
数据库 SQL MySQL 行业数据 select
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn