%
arrReviews = createarray("SELECT a_id, a_headline, a_shortdescription, a_article FROM t_articles WHERE a_sectionid = 19 ORDER BY a_startdate DESC",strCon)
%>
<% = arrSettings(3,0) & " Music :: Reviews" %>
<% = displaySections(arrSections,2,0) %>
You are here: Cornerstone Magazine<% = displayLocator(arrSections,19,0) %>
<%
intCountReviews = 0
for i = 0 to ubound(arrReviews,2)
%>
<% = displayPictureInArticle(arrReviews(3,i)) %>
<% = arrReviews(1,i) %>
<%
if arrReviews(2,i) <> "" then
%>
<% = arrReviews(2,i) %>
<%
else
%>
<% = formatleftwords(removehtml(arrReviews(3,i)),500) %>
<%
end if
%>
Read review
|
<%
intCountReviews = intCountReviews + 1
if intCountReviews = 4 then
exit for
end if
next
%>
<%
arrLatestArticles = createArray( getSqlForLatestArticles("2,19,28,29", 0),strCon)
%>
<% = displayLatestArticles(arrLatestArticles) %>