php它坚持0?从db获取

时间:2012-04-25 07:44:07

标签: php mysql

<?php
mysql_connect('localhost','root','root');
mysql_select_db('moodle');
            $ht = "";
            $sql = "select * from absence where username='iset' ";
            $sql_query = mysql_query($sql);

            while( $row = mysql_fetch_object($sql_query) ){
                $ht +=  "<li>".$row->classe."</li>";

            }
echo $ht;
?>   

总是// 0 我在“缺席”中有3行,用户名='iset' 我觉得$ ht的问题但是!!! 谢谢高级

1 个答案:

答案 0 :(得分:6)

PHP中的

String concatenation使用.而不是+完成。

这一行

            $ht +=  "<li>".$row->classe."</li>";

应该成为

            $ht .=  "<li>".$row->classe."</li>";