Hi,

I'm displaying a list of fonts from a database.

<cfform action="create-list.cfm" method="POST" enablecab="Yes">
                <td class="dirlinks">
                <cfquery name="GetFontFamily" datasource="fontstyles">
                        SELECT      sti, ID
                        FROM        fontsti
                        ORDER BY sti
                </cfquery>
                <cfoutput query="GetFontFamily">
                        <cfinput type="Checkbox" name="select" 
value="#GetFontFamily.sti#">&nbsp;#GetFontFamily.sti#<br>
                </cfoutput>
                </td>
        </tr>
        </table>
</cfform>

Which displays something like:

[ X ]  aachen
[   ]  accolade
[ X ]  adelon
[ X ]  amelia

and so on...


My question is, how can I display just the fonts that are checked above in 
another template for further processing.


______________________________________________________________________
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation � $99/Month � Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to