问题描述
- 新手在此 谢谢各位前辈了!!
-
<?php
$dbms='mysql';
$dbName='luo';
$user='root';
$pwd='root';
$host='localhost';
$dsn="$dbms:host=$host;dbname=$dbName";
try{
$pdo=new PDO($dsn,$user,$pwd);
$query="select * from tb_affiche";
$result=$pdo->prepare($query);
$result->execute();
while($res=$result->fetch(PDO::FETCH_ASSOC)){
?>删除 <?php
}
echo "PDO链接Mysql";
}catch(Exception $e){
echo $e->getMessage()."
";
}
?>
出现Notice: Use of undefined constant createtime - assumed 'createtime' in D:WWWaff.php on line 24
错误
解决方案
错误信息显示:常量 createtime 未定义
但你给出的代码中并没有出现 createtime
估计是你在使用查询结果时写作 $res[createtime] 了,改作 $res['createtime'] 就可以了
时间: 2025-01-29 17:46:57