php-general Digest 11 Mar 2006 10:18:07 -0000 Issue 4009

2006-03-11 Thread php-general-digest-help
php-general Digest 11 Mar 2006 10:18:07 - Issue 4009 Topics (messages 231760 through 231781): Re: highlight_string() 231760 by: Weber Sites LTD Re: Editing an existing pdf? 231761 by: Sam Smith 231765 by: Meron 231771 by: Sam Smith 231774 by: Meron

[PHP] database connection pool

2006-03-11 Thread Khai
Hello, My name is Khai. I am new to PHP. I am well versed with mod_perl and apache. With mod_perl, I can use Apache::DBI to cache database connections. Is there a module for PHP that does the same thing ? Thank you, Khai -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] equivalent of perl's ithread

2006-03-11 Thread Khai
As of perl 5.6, perl has a concept of interpreter thread (called ithread). Basically, any variable that you want to be shared across threads, you have to explicitly shared it. This apply not only to regular variables, but also apply to super global variables such as $_, making it easy to

Re: [PHP] database connection pool

2006-03-11 Thread Miles Thompson
At 06:17 AM 3/11/2006, Khai wrote: Hello, My name is Khai. I am new to PHP. I am well versed with mod_perl and apache. With mod_perl, I can use Apache::DBI to cache database connections. Is there a module for PHP that does the same thing ? Thank you, Khai -- PHP General Mailing List

[PHP] Possible hacker using php script to send e-mails?

2006-03-11 Thread Merlin
Hi there, I am running php 4.x on a suse 9.x machine. There is a php script which resides on a webapp that is responsible for sending e-mail to myself in case of errors like db-errors or similar. Called error.php This script does include phpmailer and uses it to send the e-mails to me. Now I

Re: [PHP] equivalent of perl's ithread

2006-03-11 Thread Miles Thompson
At 06:33 AM 3/11/2006, Khai wrote: As of perl 5.6, perl has a concept of interpreter thread (called ithread). Basically, any variable that you want to be shared across threads, you have to explicitly shared it. This apply not only to regular variables, but also apply to super global

[PHP] Re: Possible hacker using php script to send e-mails?

2006-03-11 Thread João Cândido de Souza Neto
If possible, i like to see this script to try to know exactly wath's happen. Merlin wrote: Hi there, I am running php 4.x on a suse 9.x machine. There is a php script which resides on a webapp that is responsible for sending e-mail to myself in case of errors like db-errors or similar.

[PHP] Why Session can't be timed out!

2006-03-11 Thread 王 振江
Excuse me,when i develop programe php in linux FC3 , i want the life time of the session to be 20 minutes ,i do the follow things in the php.ini file 1.change session.gc_maxlifetime = 1200 2.change session.gc_probability = 100 3.change session.use_cookies = 0 4. restart the apache server and it

[PHP] session register()

2006-03-11 Thread suresh kumar
i am facing two problems in my project. 1) whether i can store variable as session variable inside javascript function 2)Is there any function available to calculate idle time of user . i am waiting for reply from u

Re: [PHP] session register()

2006-03-11 Thread Satyam
- Original Message - From: suresh kumar [EMAIL PROTECTED] To: php php-general@lists.php.net Sent: Saturday, March 11, 2006 4:51 PM Subject: [PHP] session register() i am facing two problems in my project. 1) whether i can store variable as session variable inside javascript

Re: [PHP] Re: Possible hacker using php script to send e-mails?

2006-03-11 Thread Anthony Ettinger
It's possible that they are including in email headers in the body. On 3/11/06, João Cândido de Souza Neto [EMAIL PROTECTED] wrote: If possible, i like to see this script to try to know exactly wath's happen. Merlin wrote: Hi there, I am running php 4.x on a suse 9.x machine. There is

[PHP] Re: Possible hacker using php script to send e-mails?

2006-03-11 Thread Manuel Lemos
Hello, on 03/11/2006 09:39 AM Merlin said the following: I am running php 4.x on a suse 9.x machine. There is a php script which resides on a webapp that is responsible for sending e-mail to myself in case of errors like db-errors or similar. Called error.php This script does include

Re: [PHP] Re: Possible hacker using php script to send e-mails?

2006-03-11 Thread Rasmus Lerdorf
Manuel Lemos wrote: Hello, on 03/11/2006 09:39 AM Merlin said the following: I am running php 4.x on a suse 9.x machine. There is a php script which resides on a webapp that is responsible for sending e-mail to myself in case of errors like db-errors or similar. Called error.php This script

[PHP] recommendations for good breacrumbs script

2006-03-11 Thread Bruce Gilbert
Hello, I am looking around for a good PHP breadcrumbs navigation script that would out put a path based on file structure. For instance if I had a folder called Portfolio and within that folder I had a index.php file and another file called Websites.php. When I was on the websites.php page, the

Re: [PHP] recommendations for good breacrumbs script

2006-03-11 Thread Steve Edberg
At 3:35 PM -0500 3/11/06, Bruce Gilbert wrote: Hello, I am looking around for a good PHP breadcrumbs navigation script that would out put a path based on file structure. For instance if I had a folder called Portfolio and within that folder I had a index.php file and another file called

[PHP] PHP/CSS/Javascript question

2006-03-11 Thread Paul Goepfert
Hi all, Is it possible to modify a table using JavaScript to control CSS visabilty when the entire table is developed dynamically using PHP? Thanks, Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Possible hacker using php script to send e-mails?

2006-03-11 Thread Manuel Lemos
Hello, on 03/11/2006 04:12 PM Rasmus Lerdorf said the following: I am running php 4.x on a suse 9.x machine. There is a php script which resides on a webapp that is responsible for sending e-mail to myself in case of errors like db-errors or similar. Called error.php This script does include

Re: [PHP] PHP/CSS/Javascript question

2006-03-11 Thread Jesús Fernández
On 3/11/06, Paul Goepfert [EMAIL PROTECTED] wrote: Hi all, Is it possible to modify a table using JavaScript to control CSS visabilty when the entire table is developed dynamically using PHP?

Re: [PHP] Possible hacker using php script to send e-mails?

2006-03-11 Thread Julius Hacker
Merlin wrote: Hi there, I am running php 4.x on a suse 9.x machine. There is a php script which resides on a webapp that is responsible for sending e-mail to myself in case of errors like db-errors or similar. Called error.php This script does include phpmailer and uses it to send the