名前のテーブルがlocation
あり、その行はlatitude
、longitude
およびradius
です。PHPが初めてなので、これらのエントリをjsonとして作成してサーバーに送り返す方法について混乱しています。
これは私が使用している現在のコードです
function Location()
{
try
{
$conn = $this->GetDBConnection();
$statement = $conn->prepare('SELECT * FROM location LIMIT 1');
$statement->execute();
if(!($row = $statement->fetch(PDO::FETCH_OBJ)))
{
throw new Exception('Connection failed.');
}
$conn = null;
while($row = $statement->fetch(PDO::FETCH_OBJ))
{
if($row->type == 'longitude')
{
// WHAT TO DO HERE
}
if($row->type == 'latitude')
{
}
if($row->type == 'radius')
{
}
}
return //JSON STRING;
} catch(PDOException $e)
{
throw $e;
}
}