如何在PHP中更正此语法错误?

时间:2017-09-11 18:55:43

标签: php mysqli

为什么我在config.php的第3行收到此语法错误? syntax error, unexpected '$username' (T_VARIABLE) in 这是我的config.php文件:

<?
$host='localhost'; 
$username="xxxxxxx"; 
$dbname="xxxxxxx"; 
$password="xxxxxxx";

$mysqli = new mysqli($host,$username,$password,$dbname);
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
?>

1 个答案:

答案 0 :(得分:-1)

这是由于未启用php短开标记。您应该启用它或使用完整标签。

使用.box1 > ul { list-style: none; } 代替<?php

OR

按照this个帖子启用短标记。