I am working on a personal ecommerce project and was wondering how can i dynamically create html pages for my list of categories in my DB.
[php]categorie in DB
id categories
1 sneakers
2 baskets
3 boots
4 mocassins[/php]
So after i queried the categories from db, i want to create them dynamically like example
[php]sneakers.html
baskets.html
boots.html
mocassins.html[/php]
How can i achieve that with php? any tips, guidelines or tutorials will help.