while 循环内的 PHP/SQL 提交按钮

发布于 2024-11-19 18:07:55 字数 793 浏览 0 评论 0原文

我得到了一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

め可乐爱微笑 2024-11-26 18:07:55

很简单。
添加起始值为 1 的计数器变量(例如 $i)。
在循环结束之前将其加一 ($i++)。
这个计数器将帮助我们为每个按钮创建一个新名称,
因为最终有多个同名按钮会让事情出错。
(特别是使用 JS 时)。

更改按钮的行:

 echo '<TD><INPUT TYPE=BUTTON OnClick="submit_btn(this)" NAME="accepted'.$i.'" VALUE="'.$data['id'].'"></TD>';

注意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:

 echo '<TD><INPUT TYPE=BUTTON OnClick="submit_btn(this)" NAME="accepted'.$i.'" VALUE="'.$data['id'].'"></TD>';

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文