i am building my own store and already have a database set up where i can add categories, subcategories and products. Each product has a field for category and subcategory-
ex.
product_name - Indiana Jones
category_name - movies
subcategory_name - action
when i do my sql statement
$qString="Select * from product_table where category=\"movies\" && subcategorey = \"action\" ";
if this search returns 30 matches, i would only like to display 9, then have the user click a next button to display the next 9, and so forth..
Can someone please point me in the right direction on how to accomplish this please
Thank you