DeadlyAssassinX
New Member
We have a codeigniter site where basically all the content seen on pages is pulled from xml files. I am not all that familiar with codeigniter so I am having a bit of trouble grasping how to tackle this issue.For example, the xml file might have this:\[code\]<view>home</view> <meta> <keywords>blue widgets, green widgets, red widgets</keywords> <description>We have the best widgets for 2012</description> </meta>\[/code\]Ultimately what I would like to do is just make the date wherever it might appear in our content use a php date function, so:\[code\]<view>home</view> <meta> <keywords>blue widgets, green widgets, red widgets</keywords> <description>We have the best widgets for {somehow put php date here}</description></meta>\[/code\]Is there anyway I can do this from the XML file or am I approaching in the wrong way?