0
0
mirror of https://github.com/Doodle3D/doodle3d-connect.git synced 2024-07-01 02:41:21 +02:00

Removed numbered box data

This commit is contained in:
peteruithoven 2014-03-07 12:28:34 +01:00
parent c0e1129bb2
commit 455074e9cc

View File

@ -8,7 +8,7 @@
$statement = $db->prepare("SELECT * FROM $table where date >= FROM_UNIXTIME(:hourago) AND remoteip = :remoteip");
$statement->execute(array( ':hourago' => $hourago,
':remoteip' => $remoteip));
$boxes = $statement->fetchAll();
$boxes = $statement->fetchAll(PDO::FETCH_CLASS);
} catch (PDOException $e) {
$response = array( "status" => "error",
"msg" => $e->getMessage()." (".$e->getCode().")");