0
I am not assessing php(array) with do loop ...plz help me someone ..đ
Php array assessing problems with do loop??
4 Respostas
+ 5
You should provide your codebits as an example, so people may help you.
0
$a = array(76,"hello",9.0,"hi",false);
$v = count($a);
$i = 0;
do {
echo $a[$i];
$i++;
}while $i < $v;
0
Plz help me
0
đ