home Links Articles Books Past Meetings Photos SiteMap
The MDCFUG is sponsored by TeraTech. Visit us at www.TeraTech.com

Please send
comments/questions to

michael@
teratech.com

 
CFC’s (cont’d)

CFC’s (cont’d)

  • Writing CFC’s

    • CFCOMPONENT

    <cfcomponent>
    <cffunction name="authenticate" access="public" output="false">
    <cfargument name="user" type="string" required="true"/>
    <cfargument name="passwd" type="string" required="true"/>
    <cfquery name="checkAuthentication" datasource="SecurityDB">
    SELECT username
    FROM Security
    WHERE username = ‘#arguments.user#’
    AND password = ‘#arguments.passwd#’
    </cfquery>
    <cfif checkAuthentication.recordCount>
    <cfreturn checkAuthentication.user/>
    <cfelse>
    <cfreturn false/>
    </cfif>
    </cffunction>
    </cfcomponent>

Previous slide Next slide Back to first slide View graphic version


Home | Links | Articles | Past Meetings | Meeting Photos | Site Map
About MDCFUG | Join | Mailing List |Forums | Directions |Suggestions | Quotes | Newbie Tips
TOP

Copyright © 1997-2024, Maryland Cold Fusion User Group. All rights reserved.
< >