The foreach Statement
The foreach Statement
The foreach statement is used to loop through arrays.
For every loop, the value of the current array element is assigned to $value (and the array pointer is moved by one) - so on the next loop, you’ll be looking at the next element.
foreach (array as value)
{
code to be executed;
}
Example
The following example demonstrates a loop that will print the values of the given array:
<html>
<body>
<?php
$arr=array(”one”, “two”, “three”);
foreach ($arr as $value)
{
echo “Value: ” . $value . “<br />”;
}
?>
</body>
</html>
and output is
Value: one
Value: two
Value: three
Related post :

November 7th, 2008 at 12:45 am
Do you know of anywhere else that I can get some information about %keyword%? I have come across your post %title% and it has given me some great ideas, but I am looking for some more information about %keyword% any ideas?
reply
November 13th, 2008 at 8:10 am
xtmq3v7mtjgyhryv
reply