Помощь в массиве PHP / MySQL

<?php include 'db.php'; $i=0; $result15=mysql_query("select c.dishes from c"); while($row=mysql_fetch_array($result15)) { if($row['dishes']!=NULL) { $dish[$i]=$row['dishes']; $i++; } } mysql_close(); $j=0; while($j<=$i) { echo $dish[$j]; $j++; } ?> 

Получение уведомления: неопределенное смещение: 2 в F: \ xampp \ htdocs …. в строке 18

Related of "Помощь в массиве PHP / MySQL"