Home » questions » I need some help looping some code in a program that I am writing?

I need some help looping some code in a program that I am writing?

2006-08-07 07:20:36, Category: Programming & Design
Please help me... you can contact me at vman01@hotmail.com and I will try to work with you via e-mail to figure this out if it is easier.

Answers

  1. cdg1111us

    On 2006-08-07 14:08:50


    C/C++/Perl/PHP: for ([start condition]; [continue condition]; [stop condition]) { // execute this block } which will end up looking like this in your code: for ($my_var = 0; $my_var < $end_amount; $my_var++) { my_code_block(); }