I have an XML output code for Google's weather API and I'd like to know how to output it into HTML. I know that there must be some PHP involved, but I'm very limited in PHP.

Here's the code:

 <forecast_information>
  <city data="Toronto, ON"/>
  <postal_code data="Toronto"/>
  <latitude_e6 data=""/>
  <longitude_e6 data=""/>
  <forecast_date data="2011-03-11"/>
  <current_date_time data="2011-03-11 15:07:00 +0000"/>
  <unit_system data="US"/>
</forecast_information>
<current_conditions>
  <condition data="Rain and Snow"/>
  <temp_f data="36"/>
  <temp_c data="2"/>
  <humidity data="Humidity: 100%"/>
  <icon data="/ig/images/weather/rain_snow.gif"/>
  <wind_condition data="Wind: S at 6 mph"/>
</current_conditions>
<forecast_conditions>
  <day_of_week data="Fri"/>
  <low data="31"/>
  <high data="37"/>
  <icon data="/ig/images/weather/rain_snow.gif"/>
  <condition data="Rain and Snow"/>
</forecast_conditions>
<forecast_conditions>
  <day_of_week data="Sat"/>
  <low data="28"/><high data="38"/>
  <icon data="/ig/images/weather/rain_snow.gif"/>
  <condition data="Rain and Snow"/>
</forecast_conditions>
<forecast_conditions>
  <day_of_week data="Sun"/>
  <low data="18"/>
  <high data="32"/>
  <icon data="/ig/images/weather/snow.gif"/>
  <condition data="Snow Showers"/>
</forecast_conditions>
<forecast_conditions>
  <day_of_week data="Mon"/>
  <low data="23"/><high data="32"/>
  <icon data="/ig/images/weather/partly_cloudy.gif"/>
  <condition data="Partly Cloudy"/>
</forecast_conditions>

A possible html output format could look like this:

<div id="forecast_information">
  <div id="city_data">Ex: Toronto </div>
  <div id="current_date_time_data">EX: 2011-03-11</div>  
  <div id="forecast_date">EX: 2011-03-11</div>
  <div id="unit_system_data">Ex: US </div>
</div>
<div id="current_conditions">
  <div id="condition_data">Ex: Rain and Snow</div>
  <div id="temp_c_data">Temperature in Celcius</div>
  <div id="humidity_data">Humidity</div>
  <div id="wind_condition_data">ex: SW at 23 km/h</div>
  <div id="icon">ex: rain.gif</div>
</div>
<div id="forecast_conditions">
  <div id="day_of_week_data">Ex: Friday</div>
  <div id="low_data">Temperature in Celcius</div>
  <div id="high_data">Temperature in Celcius</div>
  <div id="condition_data">Ex: Rain</div>
 <div id="icon">ex: rain.gif</div>
</div>
<div id="forecast_conditions">
  <div id="day_of_week_data">Ex: Saturday</div>
  <div id="low_data">Temperature in Celcius</div>
  <div id="high_data">Temperature in Celcius</div>
  <div id="condition_data">Ex: Rain</div>
 <div id="icon">ex: rain.gif</div>
</div>
link|improve this question

50% accept rate
1  
So what do you want to transform it into? – lonesomeday Mar 11 '11 at 16:34
1  
What HTML do you want to output? – Matt Ball Mar 11 '11 at 16:34
feedback

closed as not a real question by Aron Rotteveel, Matt Ball, Gordon, Dimitre Novatchev, ChrisF Mar 12 '11 at 20:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

up vote 0 down vote accepted

This stylesheet:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="*/*">
        <div>
            <xsl:attribute name="id">
                <xsl:apply-templates select="." mode="id"/>
            </xsl:attribute>
            <xsl:apply-templates select="node()|@*"/>
        </div>
    </xsl:template>
    <xsl:template match="postal_code|latitude_e6|longitude_e6|temp_f"/>
    <xsl:template match="*" mode="id">
        <xsl:value-of select="concat(name(),'_data')"/>
    </xsl:template>
    <xsl:template match="forecast_information|current_conditions|
                         forecast_conditions|icon|forecast_date" mode="id">
        <xsl:value-of select="name()"/>
    </xsl:template>
</xsl:stylesheet>

Output:

<div id="forecast_information">
    <div id="city_data">Toronto, ON</div>
    <div id="postal_code_data">Toronto</div>
    <div id="latitude_e6_data"></div>
    <div id="longitude_e6_data"></div>
    <div id="forecast_date">2011-03-11</div>
    <div id="current_date_time_data">2011-03-11 15:07:00 +0000</div>
    <div id="unit_system_data">US</div>
</div>
<div id="current_conditions">
    <div id="condition_data">Rain and Snow</div>
    <div id="temp_f_data">36</div>
    <div id="temp_c_data">2</div>
    <div id="humidity_data">Humidity: 100%</div>
    <div id="icon">/ig/images/weather/rain_snow.gif</div>
    <div id="wind_condition_data">Wind: S at 6 mph</div>
</div>
<div id="forecast_conditions">
    <div id="day_of_week_data">Fri</div>
    <div id="low_data">31</div>
    <div id="high_data">37</div>
    <div id="icon">/ig/images/weather/rain_snow.gif</div>
    <div id="condition_data">Rain and Snow</div>
</div>
<div id="forecast_conditions">
    <div id="day_of_week_data">Sat</div>
    <div id="low_data">28</div>
    <div id="high_data">38</div>
    <div id="icon">/ig/images/weather/rain_snow.gif</div>
    <div id="condition_data">Rain and Snow</div>
</div>
<div id="forecast_conditions">
    <div id="day_of_week_data">Sun</div>
    <div id="low_data">18</div>
    <div id="high_data">32</div>
    <div id="icon">/ig/images/weather/snow.gif</div>
    <div id="condition_data">Snow Showers</div>
</div>
<div id="forecast_conditions">
    <div id="day_of_week_data">Mon</div>
    <div id="low_data">23</div>
    <div id="high_data">32</div>
    <div id="icon">/ig/images/weather/partly_cloudy.gif</div>
    <div id="condition_data">Partly Cloudy</div>
</div>
link|improve this answer
@Alejandro -- This is superb. Thank you so much – user546585 Mar 13 '11 at 4:57
@user546585: You are welcome. – user357812 Mar 13 '11 at 15:08
feedback

This can be done with XSLT. You can create a XSLT stylesheet which transforms your XML file to HTML based on the rules you created. See XSLT in PHP.

Example from the documentation:

$xslDoc = new DOMDocument();
$xslDoc->load("collection.xsl");

$xmlDoc = new DOMDocument();
$xmlDoc->load("collection.xml");

$proc = new XSLTProcessor();
$proc->importStylesheet($xslDoc);
echo $proc->transformToXML($xmlDoc);
link|improve this answer
feedback

Try read this xml
Or this simple xml

link|improve this answer
Please see the code above – user546585 Mar 11 '11 at 16:52
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.