[PHP] Re: PHP dependent on connection speed?

2002-01-03 Thread Joe Webster

Uh no,

Php is completely server-side. Any kind of request will be built up,
processed, and sent out to be sent to the user. If the user has a slow
connection it will take longer to get that information, but PHP is done.

-Joe

Charlesk [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Is the php engine slowed by users with a slow connection?

 Charles Killmer
 NetgainTechnology.com
 IIS 5.0 Win 2000 Server PHP 4.1.0



-- 
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] Re: PHP dependent on connection speed?

2002-01-03 Thread Julio Nobrega Trabalhando

  No, it's server side.

  Only if you flush some kind of content, with parts of the script waiting
to be executed after these contents are 'used' by the user. This would not
affect in how much time certain script lines are executed (since it's the
server who process them), but the overall execution time could be affected
based on the connection speed.

  Like, 10 seconds for modem users and 2 or 4 seconds for cable connections.
But I have never seen a script that would use this technique...

--

Julio Nobrega.

Um dia eu chego lá:
http://sourceforge.net/projects/toca

Ajudei? Salvei? Que tal um presentinho?
http://www.submarino.com.br/wishlistclient.asp?wlid=664176742884


Charlesk [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Is the php engine slowed by users with a slow connection?

 Charles Killmer
 NetgainTechnology.com
 IIS 5.0 Win 2000 Server PHP 4.1.0



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