我是PHP的新手,并且正在建立一个论坛.除一个文件add_topic.php外,所有文件均有效.
它给我一个错误,说:
Parse error: syntax error, unexpected T_CLASS in /home/a3885465/public_html/add_topic.php on line 25
我知道可能在网上:
}
else{
echo "ERROR";
}
mysql_close();
但是整个代码都在下面,以防万一.
如果您有任何想法,将不胜感激,谢谢!
add_topic.php的代码
$host=""host"";
$username="username";
$password="password";
$db_name ="database_name";
$tbl_name="forum_question";// Table name
// Connect to server and select database.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
// get data that sent from form
$topic= $_POST['topic'];
$detail= $_POST['detail'];
$name= $_POST['name'];
$email= $_POST['email'];
$datetime=date("d/m/y h:i:s");//create date time
$sql="INSERT INTO $tbl_name(topic, detail, name, email, datetime)VALUES('$topic',
'$detail', '$name', '$email', '$datetime')";
$result=mysql_query($sql);
if($result){
echo "Successful
";
echo "View your topic";
else{
echo "ERROR";
}
mysql_close();
?>