I'm wondering if its the loop also - I've done it a 100 different times on other projects with no problem. I'll keep fut-zing around with it - could be the query also, I'll check.
Thanks, mark -----Original Message----- From: Douglas L. Brown [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 03, 2001 3:59 PM To: CF-Talk Subject: Re: Varaible psssing in URL This seems to work fine, I took out the loop and declared a var of m_id, cant see why it would choke, unless it is something in the query. I just had it post back to itself <CFSET m_id = "123"> <CFSET name = "john"> <html> <head> <title>Untitled</title> </head> <body> <FORM name="form2" method="post" action="thisPage.cfm?fname=<cfoutput>#m_ID#</cfoutput>"> <SELECT name="fname"> <option value="<CFOUTPUT>#m_id#</CFOUTPUT>"><CFOUTPUT>#name#</CFOUTPUT></OPTION> </SELECT> <INPUT type="submit" name="Submit" value="Go!"> </form> </body> </html> DB ----- Original Message ----- From: "Douglas L. Brown" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, November 03, 2001 12:39 PM Subject: Re: Varaible psssing in URL > Never mind, I was losing it..... > > DB > > > ----- Original Message ----- > From: "Mark Leder" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Saturday, November 03, 2001 12:23 PM > Subject: Varaible psssing in URL > > > > I must be losing it. There are multiple forms on this page, all simple. > > This form > > Simple form: chokes on the form specification of > > "?fname=<cfoutput>#m_ID#</cfoutput>" before anything is even selected. > > What am I missing? > > > > Thanks, Mark > > > > ------------------------------- > > > > <FORM name="form2" method="post" > > > action="/speakers/spkfrmain_results.cfm?fname=<cfoutput>#m_ID#</cfoutput>"> > > > > <SELECT name="fname"> > > <cfloop query="q_lastname"><option > > > value="<cfoutput>#q_lastname.m_id#</cfoutput>"><CFOUTPUT>#q_lastname.fullnam > > e#</CFOUTPUT></option> > > </cfloop> > > </SELECT> > > <INPUT type="submit" name="Submit" value="Go!"> > > > > </form> > > > > ------------------------------ > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm 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

