I have a small problem with my mysqli related function. Here is the code:
$query = \"SELECT * FROM uploads\"; if ($result = $mysqli->query($query)) {
$data = array(); $query = "SELECT * FROM uploads"; if ($result = $mysqli->query($query)) { while ($row = $result->fetch_assoc()) { $data[] = $row; } } return $data;