Anyone care to help figure out why the <a href> line just after the start of
the cfloop isnot getting parsed?

     <cfquery name="categories" datasource="#application.dsn#">
    SELECT      *
    FROM        tblCategory
    WHERE       categoryTopcategoryID=2
    </cfquery>
    <cfloop query="categories">
        <a href="aroma_prod_all.cfm?categoryId=#categoryID#">#categoryCategory#</a>
        <cfquery name="products" datasource="#application.dsn#">
        SELECT *
        FROM   tblProduct
        WHERE  productCategoryID = #categoryID#
        </cfquery>
            <ul>
        <cfoutput query="products">
            <li><b><a 
href="aroma_prod.cfm?productId=#productId#">#productName#</a></b></li>
        </cfoutput>
            </ul>
    </cfloop>

-- 
***********************************************
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***********************************************
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***********************************************

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to