Skip to main content

Multiple Dropdown Boxes that will fill in a table



I'm going to have 3 drop down menus.





  1. that has garment.



  2. has the color.



  3. number of colors.







When the person selects these it will generate a table that shows what the cost for the amount of pieces like 1 column 48pc then 72pc then 96pc and so on. I dont expect anyone to write the code but I was trying to figure out the best language to use. I was thinking javascript but i'm not sure where to start if anyone knows some tutorials or something to help. I would appreciate it.


Comments

  1. I think you should start with html and php.

    There is a html page with dropdown menus in a form, so it can be send to server for processing.
    On server side there is a php script which will validate input and output page with table etc.

    If you are a beginner, you may look at:
    http://www.w3schools.com/html/html_forms.asp
    and
    http://www.w3schools.com/php/php_forms.asp

    ReplyDelete

Post a Comment