我想從我的應用程序將查詢發送到我的PHP代碼throgh POST解析查詢到PHP和返回結果ERROR T_WHILE
<?php
$con=mysql_connect("xxx","xxx","xxx");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("xxx", $con);
$query=$_POST['query'];
$result = mysql_query({$query})
while($row = mysql_fetch_assoc($result))
{
$output[]=$row;
}
print(json_encode($output));
我得到這個錯誤:
ERROR ON LINE 15 UNEXPECTED T_WHILE
你錯過了mysql_query結尾處的';'。 –