当前位置:Gxlcms > PHP教程 > php-PHP留言板问题!好像是连接数据库有问题求解答

php-PHP留言板问题!好像是连接数据库有问题求解答

时间:2021-07-01 10:21:17 帮助过:5人阅读

php数据库

自己写了个留言板 打不开 显示如下错误
Fatal error: Call to undefined function inclue() in .....\lyb\index.php on line 2

index.php代码如下

inclue ("config.php");
$sql = "select * from content";
$resule = mysql_query($sql,$q);
?>


留言本

首页|留言


Name:
Email





}
?>

config.php 代码如下


$q = mysql_connect("localhost","root","root");
if(!$q)

{ die('Could not connect: ' . mysql_error()); }

mysql_query("set names utf8"); //以utf8读取数据 mysql_select_db("guestbook",$q); //数据库
?>

人气教程排行