Encoding an interface in which the user selects a reoccurnace date

I need to create an interface in which the user will need to choose how many times his magazine / newspaper will be distributed. Some magazines / newspapers are distributed

  • Few times a week.
  • Several times a month: - either in the afternoon (for example, every second Tuesday), or by date (for example, at 1, 10 and 28).
  • Several times a year.

Once the selected frequency is selected, I need to add additional information to each frequency element. for example, if a user selects weekly on Mondays and Fridays, I need to add additional information on Monday and separate information on Friday.

Does anyone have any ideas on how to do this? Or where can I learn more or get some examples?

I am using PHP and javascript / jquery for this application.

Thanks in advance.

+3
source share
1 answer

You will need to ask end users a series of questions and use jquery to display the next set of questions for the next set of results, etc.

+1
source

All Articles