I've been given the job of creating a small order entry system in PHP and MySQL. I need some help with the user interface.
There are any number of stock items, and each stock item belongs to a category. On an order I need to allow the user to enter as many details lines (stock code and qty). What's a good way to achieve this?
I could just display 10 detail lines consisting of drop-down lists and input boxes, but that would restrict the user to 10 items per order. The average order will probably be somewhere between 1 and 10 items, but some people may order more.
Does anyone have an example that I can look at that shows how this can be handled? I don't need to see any code, just an example.