If you would like to suggest a site
to be included in this page, Click here.
Report the dead links to LinkMaster.
<%
Set OBJdbConnection=Server.CreateObject("ADODB.Connection")
OBJdbConnection.Open("DRIVER={MySQL ODBC 3.51 Driver};Server=mysql4.brinkster.com;uid=armenia1;pwd=52xmax;database=armenia1;")
Set rs = Server.CreateObject("ADODB.Recordset")
sql = "SELECT Links_Category FROM links GROUP BY Links_Category asc"
rs.Open sql, OBJdbConnection
While Not rs.EOF
Response.Write("" & rs.fields("Links_Category") & " ")
rs.movenext
Wend
set rs = Nothing
OBJdbConnection.Close
set OBJdbConnection = Nothing
%>