TutorMe Posted July 13, 2007 Share Posted July 13, 2007 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 More sharing options...
jchemie Posted July 13, 2007 Share Posted July 13, 2007 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 More sharing options...
TutorMe Posted July 13, 2007 Author Share Posted July 13, 2007 Thanks for the quick response. That fixed it. Link to comment https://forums.phpfreaks.com/topic/59733-solved-looping/#findComment-296882 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.