Yeah i see what you're saying and i don't mind using new code i don't yet understand if you can break it down and explain what a given command or piece of code does.
MySQL is available to use but that would mean additional coding and learning, though i understand the basics of retrieving and inputting data in MySQL there's always that issue of ensuring you are doing everything in a way where people can't start using SQL injections on your site, not an extra i want to wrestle with when i know little about the language.
The server where i'll be plonking the pages onto has just been taken down due to SQL injections (was running an older modified version of DragonflyCMS). The forums area had 1 thread containing over 8000 posts to porn images and videos embedded from guest accounts, although guest accounts and HTML in forum posts were disabled...
It's just an extra thing to have to worry about if i start sending and retrieving data from a database.
The other admin has written his own mini CMS (for personal use - very basic functions) with his also limited knowledge so i'll proberly work a mixture of my own work and his.
Just need him to reply to my messages and then we'll compare notes.... He's working over the weekend though, so i can't expect him to reply.
The function i was referring for the header and footer would mean you use....
header ();
your page / content here
footer ();
A little quicker (marginal i know) to deal with then using an include for every page.
However currently i use require_once for the header and footer instead of include so pages can't be loaded without the header and footer, but i'm sure you know how that works anyway...
MySQL is available to use but that would mean additional coding and learning, though i understand the basics of retrieving and inputting data in MySQL there's always that issue of ensuring you are doing everything in a way where people can't start using SQL injections on your site, not an extra i want to wrestle with when i know little about the language.
The server where i'll be plonking the pages onto has just been taken down due to SQL injections (was running an older modified version of DragonflyCMS). The forums area had 1 thread containing over 8000 posts to porn images and videos embedded from guest accounts, although guest accounts and HTML in forum posts were disabled...
It's just an extra thing to have to worry about if i start sending and retrieving data from a database.
The other admin has written his own mini CMS (for personal use - very basic functions) with his also limited knowledge so i'll proberly work a mixture of my own work and his.
Just need him to reply to my messages and then we'll compare notes.... He's working over the weekend though, so i can't expect him to reply.
The function i was referring for the header and footer would mean you use....
header ();
your page / content here
footer ();
A little quicker (marginal i know) to deal with then using an include for every page.
However currently i use require_once for the header and footer instead of include so pages can't be loaded without the header and footer, but i'm sure you know how that works anyway...