<?
$abc['a'] = 'apple';
$abc['b'] = 'banana';
while(list($key, $value) = each($abc))
{
//$key will hold the array index,
//while $value holds the content
echo "$key = $value\n<BR>";
//you can do something else here
//besides a mere output
}
?>
Output:
a = apple
b = banana