Hi guys I am new to xslt I have an sql query:
SELECT name, language, Year($Date), Month($Date), DayOfMonth($Date),
%FeatureThumbnail.size, %SimpleDocumentContent.content
WHERE documentType = 'News' AND $Date <= CurrentDate()
AND InCollection('arocha') AND language = 'en'
AND $NotOnMainPage = 'false' AND $NewsSubType = 'by-us'
and I am trying to display the results i.e.
<xsl:for-each select="sql_result">
<xsl:value-of select="name"/>
<xsl:value-of select="language"/>
</xsl:for-each>
so how do i create the sql_result? Does this make sense?
All I am trying to do is display the results of the sql query? Theoretically it is simple. If I were using php I would out
$result = mysql_query("SELECT name, language, Year($Date), Month($Date), DayOfMonth($Date),
%FeatureThumbnail.size, %SimpleDocumentContent.content
WHERE documentType = 'News' AND $Date <= CurrentDate()
AND InCollection('arocha') AND language = 'en'
AND $NotOnMainPage = 'false' AND $NewsSubType = 'by-us'
");
while($row = mysql_fetch_array($result)) {
echo $row['name'];
echo $row['language'];
}
I am trying to build a site for a client, and they have to use Daisy CMS the sql query I have used returns all the news items to be displayed on the front page. Now all I am trying to do is display them on the front page.
Daisy seems to have little to no useful documentation.
