0
我有我的PHP代碼的問題。 我不能編碼在我的DB 我所有的紀錄這是我的PHP代碼:JSON編碼從PHP
$out = array();
while ($row3 = mysql_fetch_array($res3)){
array_push($out, array('nomi_partecipanti' => $row3['nomi_partecipanti'], 'importo' => $row3['importo'], 'Stato' => $row3['options']));
print(json_encode($out));
}
我希望輸出JSON是類似的東西:
[{"nomi_partecipanti":alex,"importo":"100","Stato":"pagato"},{"nomi_partecipanti":mark,"importo":"300","Stato":"pagato"}]}
預先感謝您。
什麼是'打印(json_encode($出))之外的'返回的權利嗎? –
是我的JS的印刷品。 – Reverter