Mysql
 sql >> Database >  >> RDS >> Mysql

json_encode() array nel ciclo while per MySQL per il calendario

Se hai solo problemi con la struttura dell'array, sei diventato un po' complesso. Puoi creare un array come questo:

$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);