Jump to content

How to call a script from loop?


ztimer

Recommended Posts

Hi.

 

Need some guidance. I have never had to call a script from loop and this is a example below.

Does anyone have an idea how to make the id call the script below as many times as needed

with the correct id. I mean. The id will be like time_1, time_2, time_3 and so on as far as 20-30.

How does the script get the info that this time to do time_1 and so on to time_30 or more depending on the

amount of rows in query..

 

Really would like to get smarter on this. Please help.

 

<?php


for($i = 1; $i <= 3; $i++){
 echo "<input type='text' id='time_".$i."'/><br>";
}


?>


<script>
 $(document).ready(function() { gebo_timepicker.init(); });
 gebo_timepicker = {
 init: function() {
 $('#time_$i').timepicker({
minuteStep: 1,
template: 'dropdown',
showSeconds: true,
showMeridian: false
 });
 }
 };
</script>


<!-- timepicker -->
<script src="lib/datepicker/bootstrap-timepicker.js"></script>
<link rel="stylesheet" href="lib/datepicker/timepicker.css" />

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.