时间:2021-07-01 10:21:17 帮助过:5人阅读
自己写了个留言板 打不开 显示如下错误
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);
?>
留言本 | |
首页|留言 |
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); //数据库
?>