Jump to content

News Feed Distribution.


trinaryatom

Recommended Posts

On the website I'm working on, i have a news feed. That news feed is on different pages with different looks (Different CSS styles). How do i get the news feed to store in a file and be loaded into every page desired. So that way, when i make a change to one, i don't have to copy paste over them all.

Link to comment
Share on other sites

Where is your news stored? If you're actually updating the HTML file each time you update the news then you should be switching to a database system using a server-side language.

Link to comment
Share on other sites

Its HTML that looks something like this.

<div id="Box"> <div id="boxtop">   <div id="Title">      Title      <div id="date">         Date      </div>   </div>   <div id="textbody">       Text blah blah blah Text blah blah blah Text blah blah blah Text blah blah blah    </div> </div> <div id="boxmid">   <div id="Title">      Title      <div id="date">         Date      </div>   </div>   <div id="textbody">       Text blah blah blah Text blah blah blah Text blah blah blah Text blah blah blah    </div> </div> <div id="boxmid">   <div id="Title">      Title      <div id="date">         Date      </div>   </div>   <div id="textbody">       Text blah blah blah Text blah blah blah Text blah blah blah Text blah blah blah    </div> </div> <div id="boxmid">   <div id="Title">      Title      <div id="date">         Date      </div>   </div>   <div id="textbody">       Text blah blah blah Text blah blah blah Text blah blah blah Text blah blah blah    </div> </div> <div id="boxmid">   <div id="Title">      Title      <div id="date">         Date      </div>   </div>   <div id="textbody">       Text blah blah blah Text blah blah blah Text blah blah blah Text blah blah blah    </div> </div></div

Right now I'm working on a JavaScript and XML setup.

Link to comment
Share on other sites

no. it will literally include the code as if it were copy/pasted right into that part of the document.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...