|
|
|
|
File: [Development] / p2rx-programs / LinkChecker_Programs.cfm
(download)
Revision: 1.1, Fri Jun 3 20:36:20 2005 UTC (4 years, 5 months ago) by pKanel Branch: MAIN Initial Commit |
<!--- Name: linkChecker_programs.cfm
Purpose: It retrieves the orgID, organizationName, URL and GraphicURL from the organization table
of Programs database
Date created: 06/03/2005
Dependancy: None
Variables: OrgID - ID of the organization
OrganizationName - Name of the organization
URL - Website of the organization
GraphicURL - URL of the organization's logo
Functions:
Date changed:
06/06/2005 Prabin Created
--->
<cfquery name="links_special" datasource="programs">
SELECT OrgID, OrganizationName, URL, GraphicURL
FROM Organization
ORDER BY OrganizationName
</cfquery>
<html>
<head>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<title>Monthly broken link checker for Programs</title>
</head>
<body>
<h1><font color="red">Programs URL and LOGO URL</font></h1>
<table>
<cfoutput query="links_special">
<tr><td>#OrgID#</td><td><strong>#OrganizationName#</strong></td></tr>
<tr><td> </td><td><a href=#URL#>#URL#</a></td></tr>
<tr><td> </td><td><a href=#GraphicURL#>#GraphicURL#</a>(LOGO)</td></tr>
</cfoutput>
</table>
</body>
</html>
| CVS Admin |
Powered by ViewCVS 1.0-dev |