|
Posted by ZeldorBlat on 11/11/05 19:53
If you want to stay completely within PHP, you could do something like
the following:
User submits some input on page1.php that will be used to build the
query.
The form posts to page2.php which first displays a "please wait"
message and begins running the query.
When the query is done, write the result to a session then redirect to
page3.php.
Grab the result from the session and display it on page3.php.
You could also use Javascript to remove the "please wait" message once
the result comes back. This avoids bouncing around between pages but,
of course, requires Javascript to be enabled.
Navigation:
[Reply to this message]
|