编辑删除行Bootstrap

时间:2018-01-19 07:13:56

标签: html twitter-bootstrap

如何在echo""。$ test [' 编辑']中进行编辑。"&#34 ;;有一个编辑页面的链接,我可以编辑详细信息。还要添加删除复选框。

我已经制作了网页。我只需要这个链接就可以完成整个过程

                         <thead>
                         <tr>
                         <th>TM Code</th>
                         <th>First Name</th>
                         <th>Surname</th>
                         <th>Nickname</th>
                         <th>Telephone</th>
                         <th>Email</th>
                         <th>Department</th>
                         <th>Action</th>

                         </tr>
                         </thead>
                         <tbody>
                         <tr>
                         <?php

                         $result = mysql_query("SELECT * FROM crm where dept 
     = 'Telemarketing'");

                         while($test = mysql_fetch_array($result))
                         {
                         $id = $test['id']; 
                         echo"<td>".$test['tm_code']."</td>";
                         echo"<td>".$test['tm_firstname']."</td>";
                         echo"<td>".$test['tm_surname']."</td>";
                         echo"<td>".$test['tm_known']."</td>";
                         echo"<td>".$test['tm_phone']."</td>";
                         echo"<td>".$test['user_email']."</td>";
                         echo"<td>".$test['dept']."</td>";
                         echo"<td>".$test['edit']."</td>";




                         echo "</tr>";
                         }
                         mysql_close($conn);
                         ?>
                        </table>   

0 个答案:

没有答案