Ed,

I'm assuming that your in your log file each entry is delimited by a 
linefeed (chr(10)) and each column in each row is delmited by a TAB 
character (chr(9))

If thats the case, then :

<table>
<cfloop index="listrow" list="#logfile#" delimiter="#chr(10)#">
        <tr>
        <cfloop index="thiscol" list="#listrow#" delimiter="#chr(9)#">
                <td><cfoutput>#thiscol#</cfoutput></td>
        </cfloop>
        </tr>
</cfloop>
</table>

will create a list out of your log file using the LF as a row delimiter 
and then loop throw each row splitting the row into columns using the 
TAB delimiter.

Regards

Stephen


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Purchase Captivate from House of Fusion, a Macromedia Authorized Affiliate and 
support the CF community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=52

Message: http://www.houseoffusion.com/lists.cfm/link=i:15:918
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/15
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:15
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to