[PHP] Re: [PHP-DB] Cannot send session cache limiter - headers already sent Cannot send session cookie - headers already sent by

2001-01-11 Thread JJeffman
Look for empty lines, html tags,"echoes" or "prints" before the cookie session is tried, even in include files and clear them. Jayme. http://www.conex.com.br/jjeffman -Mensagem Original- De: JB <[EMAIL PROTECTED]> Para: <[EMAIL PROTECTED]>; <[E

[PHP] Re: [PHP-DB] connection id

2001-03-24 Thread JJeffman
Use persistent connections it's a matter of performance of your script. When you use persistent connections the next call to mysql_pconnect will catch a opened connection if available. The mysql_connect command always open a new connection which slower than get an opened one. Anyway you can't use