i assume you have some type of relationship set up between your 2 tables? If so, the query on your category display page should probably look something like this:
select name, blah, blah from product_table where category_id = '$cat_variable'
and then you should be able to handle displaying your data.
wherever you are building your link to this page it should probably look something like this
<a href="category_view.php?cat_variable=12">Category X</a>
hope this helps, and good luck.