1 pKanel 1.1 <!--- Name: linkChecker_programs.cfm
2 Purpose: It retrieves the orgID, organizationName, URL and GraphicURL from the organization table
3 of Programs database
4 Date created: 06/03/2005
5 Dependancy: None
6 Variables: OrgID - ID of the organization
7 OrganizationName - Name of the organization
8 URL - Website of the organization
9 GraphicURL - URL of the organization's logo
10 Functions:
11 Date changed:
12 06/06/2005 Prabin Created
13 --->
14
15 <cfquery name="links_special" datasource="programs">
16 SELECT OrgID, OrganizationName, URL, GraphicURL
17 FROM Organization
18 ORDER BY OrganizationName
19 </cfquery>
20
21
22 pKanel 1.1 <html>
23 <head>
24 <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
25 <title>Monthly broken link checker for Programs</title>
26 </head>
27 <body>
28
29 <h1><font color="red">Programs URL and LOGO URL</font></h1>
30 <table>
31 <cfoutput query="links_special">
32 <tr><td>#OrgID#</td><td><strong>#OrganizationName#</strong></td></tr>
33 <tr><td> </td><td><a href=#URL#>#URL#</a></td></tr>
34 <tr><td> </td><td><a href=#GraphicURL#>#GraphicURL#</a>(LOGO)</td></tr>
35 </cfoutput>
36 </table>
37
38 </body>
39 </html>
|