热搜:NVER node 开发 php

新手上路(关于mysql_fetch_array)

2024-08-14 23:20:02
新手上路(关于mysql_fetch_array)

<?php
include 'con_db.php';
$sqlsl="SELECT * FROM `phptestdb`.`inputtest`";
$dbdate=mysql_query($sqlsl)or die(mysql_error());
while($list=mysql_fetch_array($dbdate)){
?>


    
        
    
    
        
        
    
<?php } ?>
=$list[content]?> 
用户:=$list[user]?>  时间:=$list[date]?> 

___________________________________________________________________________________________________________________________________________________
测试提示:
undefined constant content - assumed 'content'
Use of undefined constant user - assumed 'user'
Use of undefined constant date - assumed 'date'

才刚上路,求知道的人指点,万分感谢!


回复讨论(解决方案)

=$list['content']?>
加上引号,其他类同

=$list['content']?>
加上引号,其他类同


谢谢,加了引号就好了。太粗心了