Home >Backend Development >PHP Tutorial >php一个mysql_fetch_array函数问题

php一个mysql_fetch_array函数问题

WBOY
WBOYOriginal
2016-06-06 20:51:311040browse

while($row = mysql\_fetch\_array($result)){} 循环

现在我要把里面数据库的一个变量转换成另一个变量,但是数组中的最后一项不能正常转换。这是什么原因呢?

具体代码:

<code>while($row = mysql_fetch_array($result)){
    $id=$row['id'];
    $content=$row['content'];
    echo "<script>$('.message').emotionsToHtml();</script>"; //把.class为message里的变量转换为html代码
    echo "<div class="message">$content</div>";
}
</code>

回复内容:

while($row = mysql\_fetch\_array($result)){} 循环

现在我要把里面数据库的一个变量转换成另一个变量,但是数组中的最后一项不能正常转换。这是什么原因呢?

具体代码:

<code>while($row = mysql_fetch_array($result)){
    $id=$row['id'];
    $content=$row['content'];
    echo "<script>$('.message').emotionsToHtml();</script>"; //把.class为message里的变量转换为html代码
    echo "<div class="message">$content</div>";
}
</code>

其实你的问题不是在php,而是在js那头。

觉得可能是因为$('.message').emotionsToHtml(); 出现了太多次,以至于执行顺序等出现问题。

建议把这个script放到循环外面来搞,最好是放在body的onload处,或者其他保证能够在所有

都完全载入以后再触发的地方执行。

mysql_fetch_array方法只能不会一数据库字段名返回数据,你可以var_dump一下$row确认数组。
要以字段名为下标返回数组,有两个办法

while($row = mysql_fetch_array($result, MYSQL_NUM)){}

while($row = mysql_fetch_assoc($result)){}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn