foreach'te döndürülen array in içi boş olduğu için bu hata.

hatalı kod:

foreach($diziler as $dizi):

endforeach;


doğrusu

if( is_array( $diziler ) ) {
foreach($diziler as $dizi):

endforeach;
}