gpt4 book ai didi

php mysql错误初学者

转载 作者:可可西里 更新时间:2023-11-01 08:22:36 26 4
gpt4 key购买 nike

第一部分 - 已解决。

你好,我正在尝试从表格中在屏幕上打印一些值,但我遇到了问题,我对字符串、向量和数组了解不多,但我认为我的问题与它们有关。

我在屏幕上看到了这个

fatal error :无法使用 [] 读取 ...

我的代码

 $sql="SELECT * FROM $tbl_name";
$result=mysql_query($sql) or trigger_error(mysql_error().$sql);
while($row = mysql_fetch_array($result)){
$DATA = $row[]; } //line with probelm
mysql_close();

//html part

<table>
<? foreach($DATA as $row): ?>
<tr>
<td><?=$row['id']?></td>
//more stuff
</tr>
<? endforeach ?>
</table>

我想做的是从数据库中打印一些值。但是我收到了这个错误。

对于英文的任何错误,我深表歉意,在此先感谢您的帮助。

第二部分 - 已编辑

好的,看来 mysql 部分正在工作,我在 html 之前使用它。 mysql_close(); echo "".$DATA[0][0];

查看它是否正常工作并打印出正确的值。但是我的 html 部分打印不正确。

<html>
<body>
<h1>Lista de usuários</h1>
<table>
<? foreach($DATA as $row): ?>
<tr>
<td><?=$row['id']?></td>
<td><?=$row['nome']?></td>
//more stuff like this
</tr>
<? endforeach ?>
</table>
</body>
</html>

你能帮帮我吗?对于任何英语错误,我深表歉意,在此先感谢您的帮助。

最佳答案

使用:

$DATA = array();
...
while($row = mysql_fetch_array($result)) {
$DATA[] = $row;
}

[] 运算符用于追加一行,这就是我们想要对 $DATA 执行的操作。这意味着它永远不会出现在赋值语句的右侧。

关于php mysql错误初学者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3022619/

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