How do i locate the index of an array?
for example if this is my php page:
<?php
$ArrayVar = ("a", "b", "c"
; //this is the array
foreach ($ArrayVar)
{
echo(indexof($ArrayVar)); //need php equiv of "indexof"
}
?>
I want to see the following output:
0
1
2
for example if this is my php page:
<?php
$ArrayVar = ("a", "b", "c"
foreach ($ArrayVar)
{
echo(indexof($ArrayVar)); //need php equiv of "indexof"
}
?>
I want to see the following output:
0
1
2