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

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -