I want to create 1 file that is inserted into all of my pages (i.e. for header, links, navs), so that when I edit that file it changes everything about that part of my webpage. Note: I don't just want to edit the style of the table, font, and stuff like that, I want to be able to edit the entire table, server and client scripts, images, and content. Is there anyway I can do this? ~imozeb
Short answer: Yes, it is possible. What I have understand is that you want to update and upload a single file that can update content of specific part of all your web pages. You can do it easily by creating your pages in php. You can simply call an external file into the existing page by using include command. It is as follows; <?php include("filename.php"); ?> I hope you have understood it.
This include works and is the best way to do it, but make sure the page you are doing this on has a .php extension, not .html, i.e. index.php.
Okay, thanks guys. I knew about the PHP include function but I wasn't sure it was the most efficient way of doing what I wanted.