foreach is a simple loop mostly used to read an array line by line;
$arr = array("one", "two" , "three");
foreach($arr as $c) {
echo $c;
}
it'll output : onetwothree
also try looking up the while loop
Copyright © 2026 eLLeNow.com All Rights Reserved.