Well, are you planning on putting this onto a public site? And, were you planning on putting this into a dabase?
If so, I suggest placing this info into tables inside a database. It would be very easy to do and many members will help you do this. Just ask further.
If not, and you just want to play with a page that has all of the data inside the page, you can do it with arrays instead of tables. Basically, load an array with all your data and use that for displaying.
Note that price breaks (ex. 1-47, 48-71,72-143), are very easy to do inside of a database. You would just create a table, let’s call it “Prices”. In that you would have fields, let’s call then something like this:
ProductiID, ProductName, Price1, Price48, Price72…
The prices would have to be entered into the table for all products.
This data might look like this: (Just a wild sample as you didn’t mention your product…)
1, “Large Red”, $5.00, $4.58, $3.99
2, “Small green”, $5.00, $4.44, $2.99
3, “etc… etc…”, $… You get the idea…
Then, when the user selects #2, Small green detailed item with light green trim, or whatever…
You would then do a query to select those prices (“SELECT * from Prices where ProductID=‘2’”)
and then display the prices from the row of data you receive back from the query. That would be
very simple to display. You could either show the entire row of prices with the current selection
highlighted so they may wish to order more to get a better break or you could just display the
actual price value.
Since you gave us little info about the business all of this is based loosely on general themes.
Hope it helps and ask away if you further questions… Good luck…