Using for next loop step 50 php? -
i want steps using next loop.
on vb or vb.net
for i=0 1000 step 50 .... next
how can use code in php?
you can use this:
for ($i = 0; $i <= 1000; $i += 50) { // code... }
it wise read php for
more details.
Comments
Post a Comment