He count how many item there are into an array.
On the for lus, he don't work with the counted value.
$webmassief = "125,15,,8,125,6,26,47,85,6,,6,3,48,,";
$webmassieftemp = split(",", $webmassief); //convert $webmassief to an array
$hoeveel = count($webmassieftemp); // Count how many item in the array example value "3"
$hoeveeljuist = is_numeric ($hoeveel); //He give me the value "1"
for ($i=0; $i < $hoeveel; $i++) { //This is not working, he give me the error-message
//Fatal error: Maximum execution time of 30 seconds exceeded in ../httpdocs/rots.php on line 534
echo "its woring";
}
for ($i=0; $i < 10 ; $i++) { //This is working 10 times
echo "its woring";
}
Do you have a solution.
If I you have something that do the same without the count item.
I am heppy to see it.
Thanks