duanke3985 2019-05-16 15:26
浏览 329
已采纳

如何在单击行特定按钮时将从数据库获取的记录值传递到另一个PHP页面

I m trying to pass the email fetched from database to next page based on the row button clicked. But i m not able to use inside the value attribute of tag.

i have created a button for each row. for any button clicked i want to move to a common page with row email. the email varies based on selected button.

while($row= mysqli_fetch_assoc($results))
{
   $_email=$row["email"];
   echo  "<tr><td>". $row["email"] ."</td><td>" . $row["name"] .
   "</td><td>". $row["credit"] ."</td><td>".
   '<form method="post" action="user.php">
    <input type="hidden" name="data" value="<?php echo $_email?>"/>
    <button><b>Home<b></button>
    </form>'. "</td></tr>";
}

the email corresponding to the row button should be avialable in user.php file using $_POST method. i m not getting email value when i m doing $data=$_POST["data"] in the user.php page

  • 写回答

1条回答 默认 最新

  • douwan4993 2019-05-16 15:35
    关注

    If you use a double quote outer wrapper and then single quotes inside that wrapper for the attributes, it easier to read and debug.

    Also remember that if you have an assoc array and you want to place $row["email"] inside the double quoted string literal, you can leave the " off like this $row[email]

    See your edited code below

       $_email=$row["email"];
       echo 
        "<tr>
            <td>$row[email]</td>
            <td>$row[name]</td>
           <td>$row[credit]</td>
           <td>
                <form method='post' action='user.php'>
                    <input type='Hidden' name='data' value='$_email'/>
                    <button><b>Home<b></button>
                </form>
            </td>
        </tr>";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 kali环境运行volatility分析android内存文件,缺profile
  • ¥15 写uniapp时遇到的问题
  • ¥15 vs 2008 安装遇到问题
  • ¥15 matlab有限元法求解梁带有若干弹簧质量系统的固有频率
  • ¥15 找一个网络防御专家,外包的
  • ¥100 能不能让两张不同的图片md5值一样,(有尝)
  • ¥15 informer代码训练自己的数据集,改参数怎么改
  • ¥15 请看一下,学校实验要求,我需要具体代码
  • ¥50 pc微信3.6.0.18不能登陆 有偿解决问题
  • ¥20 MATLAB绘制两隐函数曲面的交线