Anyone use <cfdocument> tag with a <cfloop>
I am trying to generate multiple documents like this -
<cfloop query="myquery">
<cfdocument type=pdf>
<html>...html code here...<html>
</cfdocument>
</cfloop>
But only the first document is generated in the browser?
my requirement i wnat to create multiple PDF and upload in to folder then zip folder so user can able to download ZIP file
thanks in advance