-2
<?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 我在 'absence' 中有 3 行用户名 = 'iset' 我认为 $ht 的问题但是 !!! 感谢先进

4

1 回答 1

6

PHP 中的字符串连接是使用.而不是+.

这条线

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

应该成为

            $ht .=  "<li>".$row->classe."</li>";
于 2012-04-25T07:46:43.083 回答