while 循环内的 PHP/SQL 提交按钮
我得到了一个使用 while 循环打印表格的 php 代码:
while ($data = mysqli_fetch_array ($result)) {
echo '<tr>';
echo '<td>' .$data ['commodity']. '</br>'. '</td>';
echo '<td>' .$data ['region'].'</br>'.'</td>';
echo '<td>' .$data ['member'].'</br>'. '</td>';
echo '<td>' .$data ['size']. '</br>'. '</td>';
echo '<td>' .$data ['price']. '</br>'.'</td>';
echo '<td>' .$data ['posted']. '</br>'.'</td>';
echo '<TD><INPUT TYPE=BUTTON OnClick="submit_btn" NAME="accepted" VALUE="accept"></TD>';
echo '</tr>';
$id=$data ['id'];
这会获取数据+submit_btn。现在我需要按钮来获取当前 id 并将其存储在变量中。
非常感谢您的帮助!
I got a php code that prints a table using while loop:
while ($data = mysqli_fetch_array ($result)) {
echo '<tr>';
echo '<td>' .$data ['commodity']. '</br>'. '</td>';
echo '<td>' .$data ['region'].'</br>'.'</td>';
echo '<td>' .$data ['member'].'</br>'. '</td>';
echo '<td>' .$data ['size']. '</br>'. '</td>';
echo '<td>' .$data ['price']. '</br>'.'</td>';
echo '<td>' .$data ['posted']. '</br>'.'</td>';
echo '<TD><INPUT TYPE=BUTTON OnClick="submit_btn" NAME="accepted" VALUE="accept"></TD>';
echo '</tr>';
$id=$data ['id'];
This fetches the data + submit_btn. now I need the button to get the current id and store it in a variable.
big thanks for all help !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很简单。
添加起始值为 1 的计数器变量(例如 $i)。
在循环结束之前将其加一 ($i++)。
这个计数器将帮助我们为每个按钮创建一个新名称,
因为最终有多个同名按钮会让事情出错。
(特别是使用 JS 时)。
更改按钮的行:
注意submit_btn函数的参数,
通过使用它,您可以访问“this.value”,其值是行的 id。
Very simple.
Add a counter variable (for instance $i) with starting value of 1.
before the end of the loop increase it by one ($i++).
This counter will help us creating a new name for each button,
because eventually having more than one button with the same name will make things go wrong.
(Especially when using JS).
change the line of the button:
Notice the paramater for the submit_btn function,
by using it you can access "this.value" which its value is the id of the row.