in reply to Pushing along the Query_String

You are going to have to make the "landing page" a CGI script. Use this script to build your form, and jam the query string parameters into your form as hidden values.

This first page would also be a good time to parse the query string and break it into the values you want for the database, rather than passing it untouched and then parsing it in the next script.

</ajdelore>

Replies are listed 'Best First'.
Re: Re: Pushing along the Query_String
by peppiv (Curate) on Jul 09, 2003 at 12:16 UTC
    Thanks for all the help. I actually got it to work by using (bows his head in defeat) JavaScript. I made a javascript button for the form submission and used the location.search command combined with document.write to put the query in the form as hidden text.

    peppiv