解析错误:语法错误,意外'¾¾'(T_STRING),我该如何解决这个问题?

时间:2016-01-27 09:29:05

标签: php-parse-error

这是我的连接页面

<?php 
$servername ='localhost';
$username ='root';
$password ='';
$dbname ='credit_list';

$conn = mysqli_connect($servername,$username,$password) or die(mysqli_error());
$dbconnect = mysqli_select_db($conn,$dbname);

?>

这是我的主页

<?php
include "includes/connect_database.php"; 
if(empty($_SESSION)) // if the session not yet started
session_start(); 
if(!isset($_SESSION['username'])) { //if not yet logged in
header("Location:index.php");// send to login page
exit;
}
?>
//codes below are the contents of the home page 

问题是我的服务器显示此错误

Parse error: syntax error, unexpected ';' (T_STRING) in C:\wamp\www\credits\home.php on line 2

我该如何解决这个问题?请帮助。

1 个答案:

答案 0 :(得分:1)

大声笑它只是因为你使用的是希腊问号而不是分号,只需用半冒号替换希腊问号,它们看起来都一样 “;”(这是希腊问号) “;” (这里是半色的)