Answers for "php how to loop through an array with html"

PHP
1

php loop through array

$letters = ['a','b','c'];
foreach ($letters as $item) {
  echo $item;
}
Posted by: Guest on October-01-2020

Code answers related to "php how to loop through an array with html"

Browse Popular Code Answers by Language