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

时间:2015-03-13 23:06:13

标签: php mysql sql html-table

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

<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

如何选择行以对所选行执行操作?每行开头的一个单选按钮又是什么? 我想选择一行并点击&#39;日程安排&#39;按钮位于页面顶部,用于安排选定的培训课程。

1 个答案:

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