I have a website that hosts videos. Each video has it's own .html page. I essentially have a template that I have made that I reuse for each video page.
The work I have to do involves entering in video details repeatedly. Often, the same piece of information is entered multiple times on the same page, for example the video title.
I am curious if there is any way to automate this process of creating the html page from my template and entering in the various video details into the page.
Perhaps I have a database or table that holds all of a videos information and then creates a new page for each table row, by opening my template, copying over information from the table and then saves the new .html file.
Any insight on how this or something similar could be done is appreciated.
www.yourdomain.com/video/3that will be picked up by a index file that will parse out the id (3) and query the database and then generate the correct response.