> I have a table that contains hundreds of URLs to schools. I currently > have the the schools and regions dispalyed on the page in a table > using a query. BUT what I really need is for the URLS to appear as > links. How do I do this dyanamically???
You just have to do the following: <cfoutput> <a href="#queryname.url#">#Queryname.schoolname#</a> </cfoutput> This will dynamically put the URL from the query into an HREF. Hope this makes sense. Rob ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Check out the new features and enhancements in the latest product release - download the "What's New PDF" now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf Archive: http://www.houseoffusion.com/groups/CF-Newbie/message.cfm/messageid:3040 Subscription: http://www.houseoffusion.com/groups/CF-Newbie/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
