i wish to make a select box of a time when people can schedule an
apppointment in 30 minute increments

so far i have this

<select name="service_time" size="1">
        <option value="">Select time</option>
        <!--- start time is 7 am.  end time is 6.  converted into minutes
--->
        <cfloop index="count" from="420" to="1080" step="30">
                        <cfif count / 60 MOD 2>
                                <cfset variables.display_time = "blah">
                        <cfelse>
                                <cfset variables.display_time = count / 60>
                        </cfif>
                        <cfoutput><option
value="#count#">#variables.display_time#</cfoutput>
        </cfloop>
</select>


any help?

Won Lee
Systems Consultant
New Channel Technologies
(330) 220-1558
[EMAIL PROTECTED]

"Turning ideas into e-Business"
<allaire> Premier Partner


------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to