编辑单击行

时间:2018-05-14 02:08:55

标签: php mysql mysqli

我的mysql数据是从数据库中提取的

$link = mysqli_connect("127.0.0.1", "root", "",database);

echo"<table border='1'>";
echo"
 <tr>
  <td>id</td>
  <td>a</td>
  <td>b</td>
 </tr>";

$sql="select id,a,b from person";
$result=mysqli_query($link,$sql) or die("Error : $sql");

 while($row= mysqli_fetch_assoc($result)){
  echo"<tr tr onclick=\"location='?id=$row[id]'\">
  <td>{$row['id']}</td>
  <td>{$row['a']}</td>
  <td>{$row['b']}</td>
  </tr>";
 }
echo"</table>";

并使用

onclick=\"location='?id=$row[id]

我希望输入一个表单来编辑所点击的ID的整行。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:0)

一般来说, 您可以使用引导程序模式来显示表单,并在用户单击表格中的一行时打开模式。在我看来,这看起来像你的作业,你显示谷歌并首先阅读文档。