PHP freaks
PHP freaks
Out of context: Reply #15
- Started
- Last post
- 16 Responses
- unfittoprint0
I did this for a private section of my folio, including architectural stuff.
you need to create the following mysql tables:
#1 categories [categoryID, title, description]
#2 subcategories [subcategoryID, categoryID, title, description]
# projects [workID, subcategoryID, title, description, date, status]
#images [imageID, workID]
you'll have to LEFT JOIN all this tables in your query order to display your project's info.
mail me if you have any doubts regarding this procedure.