I have an array of numbers that can be 1-24. ($timelist) I want to use this array to make a select time form. How would I use this array to toggle the visibility of a radio button?
For example: I have array(1,2,4) and radio buttons 1AM, 2AM, 3AM, and 4AM. I want radio button 3AM to not show based on the array in my php script.
Any ideas on how to make this work?
What I got so far is a form where the user selects a date and hits enter.
It then sends them to a php file named validate.php via get method.
The script will do it's job and place available times into an array.
I want to use that array (1-24) to display the available times as radio buttons (12AM to 12PM) where the user can select one based on a time available and continue the application process.