$sql = "SELECT * FROM `places` ORDER BY ? ? LIMIT ?";
$stmt = $this->dbc->prepare($sql);
call_user_func_array(array($stmt, "bind_param"), array("ssi", "id", "DESC", 10));
$sql = "SELECT * FROM `places` ORDER BY id DESC LIMIT ?";
$stmt = $this->dbc->prepare($sql);
call_user_func_array(array($stmt, "bind_param"), array("i", 10));