get index value foreach php code example
Example 1: php foreach get current index
$index = 0;
foreach($data as $key=>$val) {
// Use $key as an index, or...
// ... manage the index this way..
echo "Index is $index\n";
$index++;
}
Example 2: php foreach index
foreach($array as $key=>$value) {
// do stuff
}