我已经开始制作一个可以将网站数据检索到应用的应用。我做了一个简单的php文件,但它给了我错误:
解析错误:语法错误,意外' $ con' (T_VARIABLE)位于第5行的/srv/disk10/2052804/www/poolswag.co.nf/service.php
我在网上看了但是得到同样错误的人注意到他们在我的半结肠时缺少半结肠
任何帮助将不胜感激
<?php
// Create connection
-----> line 5 $con=mysqli_connect("http://www.poolswag.co.nf/","2052804_swag”,”test5350”,”2052804_swag");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
// This SQL statement selects ALL from the table 'Locations'
$sql = "SELECT * FROM PoolInfo";
// Check if there are results
if ($result = mysqli_query($con, $sql))
{
// If so, then create a results array and a temporary one
// to hold the data
$resultArray = array();
$tempArray = array();
// Loop through each row in the result set
while($row = $result->fetch_object())
{
// Add each row into our results array
$tempArray = $row;
array_push($resultArray, $tempArray);
}
// Finally, encode the array to JSON and output the results
echo json_encode($resultArray);
}
// Close connections
mysqli_close($con);
?>
答案 0 :(得分:4)
你在这看到卷曲/智能引号”
吗?
("http://www.poolswag.co.nf/","2052804_swag”,”test5350”,”2052804_swag")
^ ^ ^ ^
这就是造成错误的原因。
("http://www.poolswag.co.nf/","2052804_swag","test5350","2052804_swag")
并且完全是两种不同的动物。
您可能已从网络中复制了一些可能未正确编码的代码,或使用某种类型的Word处理器而不是代码“编辑器”。
请参阅以下内容以获取一些代码编辑器和添加信息的列表:
答案 1 :(得分:2)
您需要在定义方法参数时使用"
或'
字符,但使用”
。替换错误的字符,一切都应该正常。