Hi, I'm wondering about this one thing. I'm starting to code a webpage where I basically want the same design all over. Where only the content is changing. So I don't want to load entire new pages where basically the same stuff gets loaded over and over again. I want to load only the contents.
Now, I'm presented with two possible solutions. Either using some sort of a jQuery content slider. Where the entire content is huuge, but I choose to show only the parts I want. And when clicking links, the position of the content within the div changes.
Or the other solution where I've got a separate file with huge amounts of div's. And where clicking links basically empties the div and loads the content of a chosen div from that other file.
What solution would be the best? Thinking both in general and programming wise? I'm expecting quite alot of php programming here and I want to reduce the amount of load as well, especially since the initial website load contains some serious heavy images.