Archive

Posts Tagged ‘xml reader’

Noaa Weather Xml Reader

January 4th, 2012 Comments off

I want to integrate weather into my website using NOAA.

1. Here is the NOAA page: http://forecast.weather.gov/MapClick.php?site=APX& lat=44.663& lon=-84.1446
2. Here is the XML to that page: http://forecast.weather.gov/MapClick.php?lat=44.66300& lon=-84.14460& FcstType=dwml

Now what I want to do is to have PHP on my website that reads the XML from the NOAA site and create the “Forecast At A Glance”.

Categories: PHP, XML Tags: , , , , , ,

Xml Reader

December 20th, 2009 Comments off

I need load data from XML to eshop

Categories: MySQL, PHP Tags: , ,

Xml Reader/converter

March 24th, 2009 No comments

Hi, i need an program that reads an xml and converts it into a html easy to read (with information in columns for example). If i want you some columns should not appear.

It’s simple as this, work for 30min i think.

The xml is presented like this:

<forum>
−
<smf_personal_messages>
<ID_PM>1</ID_PM>
<ID_MEMBER_FROM>2</ID_MEMBER_FROM>
<deletedBySender>1</deletedBySender>
<fromName>premiumaccount</fromName>
<msgtime>1193589393</msgtime>
<subject>xxx</subject>
<body>xxxxxxx</body>
</smf_personal_messages>
−
<smf_personal_messages>
<ID_PM>3</ID_PM>
<ID_MEMBER_FROM>1</ID_MEMBER_FROM>
<deletedBySender>0</deletedBySender>
<fromName>xxx</fromName>
<msgtime>1193754442</msgtime>
<subject>xxx</subject>
−
<body>
txxxx
</body>
</forum>

Bear