gpt4 book ai didi

php - 选择表行以对该行执行操作

转载 作者:行者123 更新时间:2023-11-29 22:46:56 25 4
gpt4 key购买 nike

这段代码生成下图中的表格:

<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>";
}

enter image description here

如何选择一行以对该所选行执行操作?每行开头有一个单选按钮,什么?我想选择一行并单击页面顶部的“安排”按钮来安排所选的培训类(class)。

最佳答案

如果您不考虑多种选择,您可以使用常规 a href html 标签来调用包含您的信息的页面。

请注意,您必须创建接受 GET 请求的 php 页面。

    <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>
}

关于php - 选择表行以对该行执行操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29043381/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com