getUserPosts($uid); for($i = 0; $i < sizeof($response['posts']); $i++) { $comments = $db->getComments($response['posts'][$i]['pid']); $response['posts'][$i]['comments'] = $comments; } } // Behövs för session-cookies och anger att formatet är json header('Access-Control-Allow-Credentials: true'); header('Content-Type: application/json'); echo json_encode($response, JSON_UNESCAPED_UNICODE);