I don't know if it's something too wacky, but, I wanted to use a dynamic drop down as the first field and then have it generate the value in the other fields. I have tried to use a second query from the first field but it doesn't recognize it. Does anyone have any ideas? Sample of the code I used in the form:
<form method="post" action="<cfoutput>#MM_editAction#</cfoutput>" name="index">
<table align="center">
<tr valign="baseline">
<td nowrap align="right" width="105">Username:</td>
<td width="221">
<select name="select">
<cfloop query="index">
<option value="<cfoutput>#index.Username#</cfoutput>" <cfif (#index.Username# EQ # Reverse(index.Username) #)>SELECTED</cfif> ><cfoutput>#index.Username#</cfoutput></option>
</cfloop>
</select>
</td>
</tr>
<tr valign="baseline">
<td nowrap align="right" width="105">First Name:</td>
<td width="221">
<input type="text" name="fname" value="<cfoutput query="indexName">"#fname#"</cfoutput>" size="32">
</td>
</tr>
<tr valign="baseline">
<td nowrap align="right" width="105">Last Name:</td>
<td width="221">
<input type="text" name="lname" value="<cfoutput query="indexName">"#lname#" </cfoutput>" size="32">
</td>
<form method="post" action="<cfoutput>#MM_editAction#</cfoutput>" name="index">
<table align="center">
<tr valign="baseline">
<td nowrap align="right" width="105">Username:</td>
<td width="221">
<select name="select">
<cfloop query="index">
<option value="<cfoutput>#index.Username#</cfoutput>" <cfif (#index.Username# EQ # Reverse(index.Username) #)>SELECTED</cfif> ><cfoutput>#index.Username#</cfoutput></option>
</cfloop>
</select>
</td>
</tr>
<tr valign="baseline">
<td nowrap align="right" width="105">First Name:</td>
<td width="221">
<input type="text" name="fname" value="<cfoutput query="indexName">"#fname#"</cfoutput>" size="32">
</td>
</tr>
<tr valign="baseline">
<td nowrap align="right" width="105">Last Name:</td>
<td width="221">
<input type="text" name="lname" value="<cfoutput query="indexName">"#lname#" </cfoutput>" size="32">
</td>