Friends for doing a job as a cycle. displaying the captured data, all but finished. After each cycle of the loop that I want to be displayed How can I do?
Turkish : for döngüsü ile içe döngüler oluşturacağım. Baştaki döngü 10 kere çalıştığında diğer 1 kere çalışacak. English : the inner loop will create the loops. The loop is run once per 10 times the other one will work.
If you're using a Loop Lets take the example <?php $i = 1; while ($i<=25) { echo $i; // Put the codes here this will display the data in the webpage echo '<br/>'; // Put the codes here this will display the data in the webpage $i++; } ?> PHP: the concept is after each loop $i increments value and meanwhile it also prints itself in the page