I haven't followed this thread closely ... will a variation of the following
work:

<cfif IsDefined("form.fieldnames")>
<cfloop
        list="#form.fieldnames#"
        index="field">

<cfoutput>

<input type=hidden name="#field#" value="#evaluate("form."&"#field#")#">

</cfoutput>

                </cfloop>
</cfif>


Where I'm dropping the info into hidden form fields, you could first
determine what the fields are and later write query using that information.



H.





Howard Owens
Internet Operations Coordinator
www.insidevc.com
[EMAIL PROTECTED]
AIM: GoCatGo1956


> -----Original Message-----
> From: Paris Lundis [SMTP:[EMAIL PROTECTED]]
> Sent: Friday, October 05, 2001 12:10 PM
> To:   CF-Talk
> Subject:      Re: unknown fields...
> 
> 
> 
> 
> 
> Jeff,
> 
> There is no form. It is posting information from desktop based software 
> to a page... the page doesn't exist right now... We catch it with a 404 
> error page.. the software I suspect thinks everythign is swell so the 
> submissions keep coming...
> 
> As far as manipulating the structure I haven't a clue. Anyone have any 
> code or simple aid to get the ball rolling...?
> 
> Thanks, as usual!
> 
> -paris
> 
> 
> Paris Lundis
> [finding the future in the past, passing the future in the present]
> [connecting people, places and things]
> 
> 
> -----Original Message-----
> From: Jeffry Houser <[EMAIL PROTECTED]>
> Date: Fri, 05 Oct 2001 13:30:35 -0700
> Subject: Re: unknown fields...
> 
> >   I'm a bit confused.
> >   Do you have access to the page that people are submitting the form
> > to?
> >   The form scope in a ColdFusion page is stored as a structure, so
> > you 
> > could just loop over the structure to find out all the form fields.
> > 
> >   Do you know where people are submitting the form from?  Can't you
> > just do 
> > a view source to see it?  If 20,000+ people are submitting info, the
> > form 
> > has gotta be somewhere obvious.
> > 
> > At 12:01 PM 10/05/2001 -0400, you wrote:
> > >Here's an odd scenario we have... haven't ever seen a need to do
> > >this... wondering what everyone recommends...
> > >
> > >We have a site that is defunct but still gets a massive number of
> > >submissions per day directly to the website... To the tune of
> > 20,000+
> > >per day...
> > >
> > >Lots of people have automated leads submission software that beams
> > >information off to a page that use to have a form there.. Funny
> > thing
> > >is we have no idea of what people are sending over and no idea of
> > the
> > >form fields...
> > >
> > >so the question is how would you go about 1. determining the fields,
> > 2.
> > >Writing a database to store the fields and any information that
> > isn't
> > >provided.
> > >
> > >Unusual I say :)
> > >
> > >-paris
> > >
> > >Paris Lundis
> > >[finding the future in the past, passing the future in the present]
> > >[connecting people, places and things]
> > >
> > >
> > 
> 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the mailserver that powers this list at http://www.coolfusion.com
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