<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html" version="1.0" encoding="UTF-8"
  indent="yes" />
  <xsl:template match="current_observation">
    <html>
      <body>
<?php
// this doesn't execute
$url = "http://www.weather.gov/data/current_obs/KCLL.xml";
echo $url;
?>
        <h1>Weather</h1>
        <p>
				  <xsl:value-of select="location" /> (<xsl:value-of select="station_id" />)
					<br />
					<xsl:value-of select="observation_time_rfc822" />
					<br />
					<a href="http://www.weather.gov/data/current_obs/KCLL.xml">http://www.weather.gov/data/current_obs/KCLL.xml</a>
        </p>
				<p>
					Temp: <xsl:value-of select="temperature_string" />
					<br />
					Wind: <xsl:value-of select="wind_string" />
					<br />
					Pres: <xsl:value-of select="pressure_string" />
				</p>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>


