I have this xml file:
<test time="11.11.2011 11:11" >
<field type="one" value="10"/>
<field type="two" value="10"/>
</test>
and I would like to echo in php and save into DB each 15 mins (type, value). I have cron. So the site'll look like this:
Type: one | Value: 10
Type: two | Value: 10
Time: 11.11.2011 11:11
and after 15 mins:
Type: one | Value: 10
Type: two | Value: 10
Time: 11.11.2011 11:11
Type: one | Value: 10
Type: two | Value: 10
Time: 11.11.2011 11:26
I can't find the right way to write the code, so i'm asking for your help. Thank you ;)