Not sure if that was a sarcastic response or not, either way... thanks for taking the time to respond.
I know html very well and your typical table won't work, at least the way I am seeing it. This will load dynamically from the database variables that i have.
What I am trying to achieve is similiar to a graph you would use for a bar graph (of course without the bar).
One description(seasons) will be on the top which will represent columns and one description(categories) on the left which will represent rows.
The rates will be populated in the graph where it corresponds to both the row & col. These should be pulled by ids I stored in the rates table. So if id1 matches the season id and the id2 matches the categories id than that particular rate will be placed in the row of the category and the column of the seasons.
these are put into three tables.
1. seasons table
sid
season
categories table
cid
category
rates table
sid
cid
rates
There is more info in each table but for brevity I kept the tables simple here. Now from this info I would like to put this into a table that i have described before. I realize that I will be using a similar table setup as the one your pointed out but where I get confused is how to do this with multiple tables. Any help would be appreciated. Thanks.