Re: [PHP] Intermediate "Searching..." screen.

2002-05-29 Thread Mike Gohlke
As stated elsewhere, this is somewhat similar to what you need. (btw, NOT tested for syntax errors) document.location='$PHP_SELF?finishedquery=$searchquery;"); } else { showsearch($finishedquery); } ?> Jeff Bearer wrote: >I have a part of my site that searches a large database and sometimes

RE: [PHP] Intermediate "Searching..." screen.

2002-05-29 Thread Ed Gorski
tonight and tell >you what I find. > > Regards, > > > Scott > >- Original Message - >From "SP" <[EMAIL PROTECTED]> >Date Tue, 28 May 2002 14:48:32 -0400 >To "Kevin Stone" <[EMAIL PROTECTED]>, "Jeff Bearer" >

RE: [PHP] Intermediate "Searching..." screen.

2002-05-28 Thread Scott Reismanis
>From "SP" <[EMAIL PROTECTED]> Date Tue, 28 May 2002 14:48:32 -0400 To "Kevin Stone" <[EMAIL PROTECTED]>, "Jeff Bearer" <[EMAIL PROTECTED]>, "Php-General \(E-mail\)" Subject RE: [PHP] Intermediate "Searching..

RE: [PHP] Intermediate "Searching..." screen.

2002-05-28 Thread SP
Vbulletin does this for their search. Anyone know how they do it? http://www.vbulletin.com/forum/search.php -Original Message- From: Kevin Stone [mailto:[EMAIL PROTECTED]] Sent: May 28, 2002 2:36 PM To: Jeff Bearer; Php-General (E-mail) Subject: Re: [PHP] Intermediate "Sear

Re: [PHP] Intermediate "Searching..." screen.

2002-05-28 Thread Kevin Stone
Search screens are a tricky prospect and none seem to work very well. However you could try one of the following techniques... Instead of the submit button initiating a search it initiates another script that displays the 'searching...' message and only after it has outputted that to the screen d

RE: [PHP] Intermediate "Searching..." screen.

2002-05-28 Thread Leotta, Natalie (NCI/IMS)
You could, in theory, submit your query to an intermediate file, which only displays the "Searching" screen, but is querying your database and throwing everything you need into hidden fields in a form. Then have that form have an onLoad submit to your results page. I did this with HTML submittin

RE: [PHP] Intermediate "Searching..." screen.

2002-05-28 Thread Ian Samuel
Title: RE: [PHP] Intermediate "Searching..." screen. What you want to do is post the form, display a searching screen, and then on that same screen... well, like this, I think: >     echo "Searching.\n";     go_go_gadget_query();     // above lin