回 帖 发 新 帖 刷新版面

主题:简单代码,请高手帮忙!!!

我模仿书上写了简单的代码,可是一直说index.php文件的第4行有错,我实在不明白,请牛人指教一下,摆脱了,本人刚开始自学,是个实在的新手,谢谢各位大人!
config.php:
<?php
$dbhost="localhost";
$dbuser="root"
$dbpassword="";
$dbdatabase="blogtastic";

$config_blogname="Funny old world";

$config_author="jono bacon";

$config_basedir="http://127.0.0.1/sites/blogtastic/";
?>


header.php:
<?php
require("config.php")
?>
<!DOCTYPE HTML PUBLIC"-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title><?php echo $config_blogname; ?></title>
<link rel="stilesheet" href="style.css" type="text.css" />
</head>
<body>
<div id="header"> 
<h1><?php echo $config_blogname; ?></h1>
[<a href="index.php">home</a>]
</div>
<div id="main">


footer.php:
</div>

<div id="footer">
&copy; <?php echo $config_blogname; ?>
</div>
</body>
</html>

index.php:
<?php

require("header.php")
require("footer.php")

?>

style.css:
a {
    color: Silver;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 12px;
    font-weight: bold;    
}

h2 {
    font-size: 12px;
    font-weight: bold;    
}

LI { list-style-type: square }


body {
    background : #525A73;
}
.text1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: White;
    text-align : left;
}
.text2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: Silver;
    text-align : left;
}
.titre1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration : none;
}
.titre2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #cccccc;
    text-decoration : none;    
}
[em18][em18][em18][em18][em18]

回复列表 (共1个回复)

沙发

不好意思,index里的那两句后面加过“;”后,说是config.php的第4行出错了!!!

我来回复

您尚未登录,请登录后再回复。点此登录或注册