работа с массивом в php
// Начиная с PHP 5.4 $table = [ "foo" => "bar", "bar" => "foo", ]; $i=0; while ($i<=$count) { $i++; echo $table[$i]; }