我想在 html 表中输出我的用户数据。首先我做一个 sql-query 来获取多维数组'users'。现在我想输出我的数据,但在我的 html 输出中出现“未定义变量:用户”错误。数组 $users 在我的代码中是已知的。该错误仅出现在前端,而不出现在 IDE 中。<? foreach( $users as $user ): ?> <tr> <td><?= $user['M_ID'] ?></td> <td><?= $user['Username'] ?></td> <td><?= $user['E-Mail'] ?></td> </tr><? endforeach; ?>
1 回答
POPMUISE
TA贡献1765条经验 获得超5个赞
使用能力<? ?>在您的php.ini文件中定义。可能您的服务器 php.ini 配置未配置为支持此功能。所以将您的代码更改为:
<?php foreach( $users as $user ): ?>
<tr>
<td><?= $user['M_ID'] ?></td>
<td><?= $user['Username'] ?></td>
<td><?= $user['E-Mail'] ?></td>
</tr>
<?php endforeach; ?>
还要感谢@jeto 的评论
- 1 回答
- 0 关注
- 92 浏览
添加回答
举报
0/150
提交
取消