Jump to content

[SOLVED] Looping...


TutorMe

Recommended Posts

I know how to loop an event a certain number of times, but I cannot figure out how to make the number of times an option.

Basically I want to have the form with an option to select the number of times the event happens.

 

Below is the code I have now.  It just loops repeatedly until I close the web page.

<?php 
for ($i=1; $_REQUEST['times']; $i++)
{my code here}

 

Link to comment
https://forums.phpfreaks.com/topic/59733-solved-looping/
Share on other sites

I know how to loop an event a certain number of times, but I cannot figure out how to make the number of times an option.

Basically I want to have the form with an option to select the number of times the event happens.

 

Below is the code I have now.  It just loops repeatedly until I close the web page.

<?php 
for ($i=1; $_REQUEST['times']; $i++)
{my code here}

 

 

The only change seems to be here

<?php 
for ($i=1; $i <= $_REQUEST['times']; $i++)
{my code here}

 

Link to comment
https://forums.phpfreaks.com/topic/59733-solved-looping/#findComment-296879
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.