这段代码生成下图中的表格:
<table border='1' cellpadding='5' width='50%' bgcolor='lightyellow'>
<tr><th>Title of Training Course</th><th>Course Provider</th><th>Venue</th><th>Fee</th></tr>";
while ($row=mysql_fetch_array($result)){
echo "<tr align='center'>
<td>".$row['tcTitle']."</td>
<td>".$row['tcProvider']."</td>
<td>".$row['tcVenue']."</td>
<td>".$row['tcFee']."</td>";
}
如何选择行以对所选行执行操作?每行开头的一个单选按钮又是什么? 我想选择一行并点击&#39;日程安排&#39;按钮位于页面顶部,用于安排选定的培训课程。
答案 0 :(得分:0)
如果您不考虑多种选择,可以使用常规a href
html标记来调用包含您的信息的页面。
请注意,您必须创建接受php
次请求的GET
页面。
<table border='1' cellpadding='5' width='50%' bgcolor='lightyellow'>
<tr><th>Title of Training Course</th><th>Course Provider</th><th>Venue</th><th>Fee</th></tr>";
while ($row=mysql_fetch_array($result)){
echo "<tr align='center'>
// link the page and make query request with course name or id etc.
<a href='http://course_info.php?course='".$row['tcTitle']."><td>".$row['tcTitle']."</td></a>
<td>".$row['tcProvider']."</td>
<td>".$row['tcVenue']."</td>
<td>".$row['tcFee']."</td></tr>"; // ! CLOSE THE TAGS </tr>
}