Re: [PHP] Search in Progress

2001-09-23 Thread Christian Reiniger

On Saturday 22 September 2001 14:41, Alexis Antonakis wrote:

 I am developing a simple site, in PHP4, which has three frames on it.

 The first gives you the search options and the second two, the results.

 What I was wondering was, while the database is being searched, is it
 possible to display some text in the 'results' frame stating that the
 search is in progress?

Little thing to think about: is your search so slow that you need to (or 
that it makes sense to) display an in progress text?

Go to 
http://www.google.com/search?q=e
and look at the info in the upper right corner of the page. That's how a 
search should work :)

-- 
Christian Reiniger
LGDC Webmaster (http://lgdc.sunsite.dk/)

These are the people who proudly call themselves hackers --
not as the term is now abused by journalists to mean a computer
criminal, but in its true and original sense of an enthusiast,
an artist, a tinkerer, a problem solver, an expert.

- ESR

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Search in Progress

2001-09-22 Thread Alexis Antonakis

Hi,

I am developing a simple site, in PHP4, which has three frames on it.

The first gives you the search options and the second two, the results.

What I was wondering was, while the database is being searched, is it
possible to display some text in the 'results' frame stating that the search
is in progress?


I also have another site which I would like do this on, however this one,
rather than using frames, uses tables, and it is only when the entire set of
data for each table has been retrieved that the page is actually displayed.

Any suggestions would be most appreciated
Alexis


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Search in Progress

2001-09-22 Thread Alexis Antonakis

Hi,

I am developing a simple site, in PHP4, which has three frames on it.

The first gives you the search options and the second two, the results.

What I was wondering was, while the database is being searched, is it
possible to display some text in the 'results' frame stating that the search
is in progress?


I also have another site which I would like do this on, however this one,
rather than using frames, uses tables, and it is only when the entire set of
data for each table has been retrieved that the page is actually displayed.

Any suggestions would be most appreciated
Alexis



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Search in Progress

2001-09-22 Thread rm

to my knowledge what you're talking about is done
through html layers and javascript...I've seen it done
at other siteshttp://www.anywho.com/rl.html  uses
this process.

rm





--- Alexis Antonakis [EMAIL PROTECTED] wrote:
 Hi,
 
 I am developing a simple site, in PHP4, which has
 three frames on it.
 
 The first gives you the search options and the
 second two, the results.
 
 What I was wondering was, while the database is
 being searched, is it
 possible to display some text in the 'results' frame
 stating that the search
 is in progress?
 
 
 I also have another site which I would like do this
 on, however this one,
 rather than using frames, uses tables, and it is
 only when the entire set of
 data for each table has been retrieved that the page
 is actually displayed.
 
 Any suggestions would be most appreciated
 Alexis
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]
 To contact the list administrators, e-mail:
 [EMAIL PROTECTED]
 


__
Do You Yahoo!?
Get email alerts  NEW webcam video instant messaging with Yahoo! Messenger. 
http://im.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Search in Progress

2001-09-22 Thread Gaylen Fraley

You don't need layers.  Just have a js routine that sends 2 different
location statements, i.e.

script
parent.resultsframe.location =
javascript:'document.write(loading...');;
// then start your search code here
/script

--
Gaylen
[EMAIL PROTECTED]
http://www.gaylenandmargie.com
PHP KISGB v1.2 Guestbook http://www.gaylenandmargie.com/publicscripts

Rm [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 to my knowledge what you're talking about is done
 through html layers and javascript...I've seen it done
 at other siteshttp://www.anywho.com/rl.html  uses
 this process.

 rm





 --- Alexis Antonakis [EMAIL PROTECTED] wrote:
  Hi,
 
  I am developing a simple site, in PHP4, which has
  three frames on it.
 
  The first gives you the search options and the
  second two, the results.
 
  What I was wondering was, while the database is
  being searched, is it
  possible to display some text in the 'results' frame
  stating that the search
  is in progress?
 
 
  I also have another site which I would like do this
  on, however this one,
  rather than using frames, uses tables, and it is
  only when the entire set of
  data for each table has been retrieved that the page
  is actually displayed.
 
  Any suggestions would be most appreciated
  Alexis
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, e-mail:
  [EMAIL PROTECTED]
  For additional commands, e-mail:
  [EMAIL PROTECTED]
  To contact the list administrators, e-mail:
  [EMAIL PROTECTED]
 


 __
 Do You Yahoo!?
 Get email alerts  NEW webcam video instant messaging with Yahoo!
Messenger. http://im.yahoo.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Search in Progress

2001-09-22 Thread hvm

Hi Alexis,

I have the same sort of settings but it is for me very difficult to get the
information from the find input field in to the session variables.
Do you have a solution how to do this?
I have no solution to your problem but it is for me also interesting to see
if someone comes with a solution.

Yours Hans.

- Original Message -
From: Alexis Antonakis [EMAIL PROTECTED]
To: Php-General@Lists. Php. Net [EMAIL PROTECTED]
Sent: Saturday, September 22, 2001 5:02 PM
Subject: [PHP] Search in Progress


 Hi,

 I am developing a simple site, in PHP4, which has three frames on it.

 The first gives you the search options and the second two, the results.

 What I was wondering was, while the database is being searched, is it
 possible to display some text in the 'results' frame stating that the
search
 is in progress?


 I also have another site which I would like do this on, however this one,
 rather than using frames, uses tables, and it is only when the entire set
of
 data for each table has been retrieved that the page is actually
displayed.

 Any suggestions would be most appreciated
 Alexis



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]