<cfquery name="qInventory" datasource="wired_cf">	select id, title, instock from inventory</cfquery><cfform action="form.cfm">	<TABLE border="1" cellspacing="3" cellpadding="5" width="350">		<TR>			<TH bgcolor="cccccc">Title			</TH>			<TH bgcolor="cccccc">Copies			</TH>			<TH bgcolor="cccccc">Choice			</TH>		</TR>				<cfoutput query="qInventory"><tr>		<td>#title#</td>		<td align=center>#instock#</td>							<td align=center>		<cfif instock gt 0>		<input type="radio" value="#id#" name="choice">		<cfelse>		All gone.		</cfif> 		</td>	</tr>	</cfoutput>	</TABLE><BR>	<TABLE width="350" border="0">		<TR>			<TD>Name:			</TD>			<TD>				<INPUT type="Text" name="name" size="25" maxlength="25">			</TD>		</TR>		<TR>			<TD>Address:			</TD>			<TD>				<INPUT type="Text" name="address" size="25" maxlength="25">			</TD>		</TR>		<TR>			<TD>City:			</TD>			<TD>				<INPUT type="Text" name="city" size="15" maxlength="15">			</TD>		</TR>		<TR>			<TD>State:			</TD>			<TD>				<INPUT type="Text" name="state" size="2" maxlength="2">			</TD>		</TR>		<TR>			<TD>ZIP:			</TD>			<TD>				<INPUT type="Text" name="zip" size="5" maxlength="5">			</TD>		</TR>		<TR>			<TD>Phone:			</TD>			<TD>				<INPUT type="Text" name="phone" size="12" maxlength="12">			</TD>		</TR>	</TABLE><BR>	<INPUT type="submit" value="Submit"></cfform>