gpt4 book ai didi

php - 根据条件列出 html 表中的一行

转载 作者:行者123 更新时间:2023-11-29 13:28:40 25 4
gpt4 key购买 nike

我正在尝试根据 ID 列出数据库中的一条记录。我有一个脚本可以列出数据库中的所有记录并在 html 表中显示记录。在表中,有一行“营销事件”这是一个链接,单击时仅显示一行记录。其想法是仅列出具有电子邮件的行,否则显示一条消息,表示没有可用的电子邮件

这是脚本

//database connection details
$id =$_REQUEST['id'];
$email =$_REQUEST['email'];

if($email != "")
{
$query = mysql_query("SELECT * FROM $tbl_name WHERE id='$id'");
echo "<table border = 1 cellpadding = 5> <tr> <th> Name </th> <th> Address </th> <th> City </th> <th> State </th> <th> Postal Code </th> <th> Voice </th> <th> Email </th> <th> Status </th> </tr>";

while($row = mysql_fetch_array($query))
{
echo "<tr>";
echo "<td> $row[1] </td>";
echo "<td> $row[2] </td>";
echo "<td> $row[3] </td>";
echo "<td> $row[4] </td>";
echo "<td> $row[5] </td>";
echo "<td> $row[6] </td>";
echo "<td> $row[7] </td>";
echo "<td> $row[8] </td>";
echo "</tr>";
}
echo "</table>";
}
else
echo 'That record does not have an Email';

但我在运行脚本时收到错误“未定义索引:电子邮件”..请帮助

最佳答案

尝试使用mysql_fetch_object:示例:

while($row = mysql_fetch_object($query))
{
echo $row->email;
}

在您的代码中,例如:

if(isset($_REQUEST['email']) && !empty($_REQUEST['email']))
$email = $_REQUEST['email'];
else
echo "enter email address";

查询后:

while($row = mysql_fetch_object($query))
{
if(empty($row->email))
{
echo "email is empty!"
continue;
}
}

关于php - 根据条件列出 html 表中的一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19786108/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com