RE: [PHP-DB] Performance boosting

2001-10-03 Thread Ricky Theil

There is a certain amount of the script that the browser can display before
the script is done loading.  I'm not sure exactly how much that is, but I've
seen this before.  I wrote a script that pulls info out of a mssql DB, and
it shows the top part of my script while pulling DB info.  It's because I
display a ton of stuff before the query is performed.

If there's not enough stuff before the query is executed, it doesn't show
anything.  If there's too much, it shows up to a certain point.

Ricky

-Original Message-
From: Luditus [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, October 03, 2001 2:27 AM
To: [EMAIL PROTECTED]
Subject: [PHP-DB] Performance boosting


Hi there,

my phpsite shows always a white page while accessing the db. Sometimes for
seconds. How can I change it to a style like for example php.net does. While
it is searching the db it shows the php logo and the header of the html
site. It looks like that: http:www.globosapiens.net/gallery

Cheers Andy



-- 
PHP Database 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 Database 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-DB] Performance boosting

2001-10-03 Thread John Lim

You need to break up your web page into several independant html tables, not
nested tables. Each independant table will be rendered progressively as it
downloads. That's the effect you are seeing.
-John

Ricky Theil [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 There is a certain amount of the script that the browser can display
before
 the script is done loading.  I'm not sure exactly how much that is, but
I've
 seen this before.  I wrote a script that pulls info out of a mssql DB, and
 it shows the top part of my script while pulling DB info.  It's because I
 display a ton of stuff before the query is performed.

 If there's not enough stuff before the query is executed, it doesn't show
 anything.  If there's too much, it shows up to a certain point.

 Ricky

 -Original Message-
 From: Luditus [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, October 03, 2001 2:27 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP-DB] Performance boosting


 Hi there,

 my phpsite shows always a white page while accessing the db. Sometimes for
 seconds. How can I change it to a style like for example php.net does.
While
 it is searching the db it shows the php logo and the header of the html
 site. It looks like that: http:www.globosapiens.net/gallery

 Cheers Andy



 --
 PHP Database 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 Database 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]