Home / Groups / ColdFusion Talk (CF-Talk)
Why won't this work to give me a list of photos?
What's #index# ?
you dont have that variable declared anywhere.. should be #photo# right?
> What's wrong with this code?
>
> (I don't get an error message from CF, just an IE Error 500...)
>
> Thanks,
>
> Rick
>
> <cffile action="read"
>
file="e:\inetpub\webroot\real_estate_data\hmls\data\2008_0719_idx_custom\active_photos.txt"
> variable="photos">
>
> <cfset photo_count=1>
>
> <cfloop index="photo" list="#photos#" delimiters="#chr(10)#">
>
> <cfoutput>#index# - #photo_count#</cfoutput><br>
>
> <cfset photo_count = photo_count + 1>
>
> </cfloop>
>
>
>
|