Nếu bạn chỉ gặp vấn đề với cấu trúc mảng của mình, thì bạn đã hơi phức tạp. Bạn có thể tạo một mảng như thế này:
$encode = array();
while($allRow = mysqli_fetch_array($dataResult))
{
$new = array(
'id' => $allRow['id'],
'title' => $allRow['title'],
'start' => $allRow['date'],
'url' => $allRow['url']
);
$encode[] = $new;
}
echo json_encode($encode);