ok.
<%
strSQL = "SELECT T_REPLIES FROM " & strTablePrefix & "TOPICS " &_
"WHERE TOPIC_ID = " & YOURTOPICID
set rs = my_conn.excute (strSQL)
if not rs.eof then
response.write "<font face=""" & strDefaultFontFace & """ size=""1"">" &_
"RESOURCES TODAY: " & rs("T_REPLIES") & "</font>"
end if
rs.close
%>