I've now been trying for hour and can't figure the problem out. I've made a php file that fetch all items in a table and retrieves that as JSON. But for some reason after I inserted the second mysql-query, it stopped fetching the first item. My code is following:
...
    case "LoadEntryList":
        $result2 = performquery("SELECT * FROM Entries WHERE Category = '" . $_POST["Category"] .
        "' LIMIT " . $_POST["Offset"] . ", " . $_POST["Quantity"] . "");
        $row2 = $result2->fetch_assoc();
    while($row = $result2->fetch_assoc()) {
        $result3 = performquery("SELECT Username FROM Users WHERE ID = '" . $row2["UserID"] . "'");
        $row3 = $result3->fetch_assoc();
   echo substr(json_encode($row),0,
        strlen(json_encode($row))-1) . ",\"Username\":\"" . $row3["Username"]  . "\"}";
}
...
Any help is greatly appreciated.
EDIT: Thanks for all those super fast responses.
 
     
     
     
     
    