Forum Moderators: open
Also, I wanna be able to modify multiple pages at once (such as title, description). My HTML editor has an option for editing selected pages, but it's pretty basic and it doesn't let you make more complex changes.
Thanks.
Dan
Its not too hard to do this if you start to use a database on your PC to enter the page contents into. I would describe this as a static database solution.
You have designed your template code already with slots in it for page title, meta tag, h1, body text etc.
You can reformat this into one table in a database perhaps 10-20 fields (including those which are blank waiting for content).
You can now make a second database (data table or whatever) to create the actual page records including perhaps unique filename, page title, meta tags, h1, p text images etc
Now you have a single template data table/file and a contents data table/file which can be fitted / knitted together to create completed multiple pages each of which has its own unique filename.
So you can merge the data to make a new table which contains only two fields, filename and file contents, then write this out to files (depending on the database you are using and your skills you may need a seperate script to do this bit)
et voila
Plus you now can change things like menus or any template item site wide and the contents you can type in your database and then change site wide.
Such a method would generate static html pages which would then need to be uploaded to your server.
You can also do this kind of thing in a more dynamic way by having a database on the server which does the merging of contents and templates as pages are requested. Like this forum for example, I am typing content into a form now yet in a moment this content will be served back (in fact now) when you request the page to read it and it will then be framed in the page template.
Hope that helps.