RE: [PHP-DB] Another question

2003-12-15 Thread Mike U. Petrov
I think no. IMHO PHP can't have effect on user's programs. If I'm not right correct me. But window.close can close window opened not by javascript. It just ask user is he want to close or no. Mike U. Petrov PHP-programmer. -Original Message- From: Constantin Brinzoi [mailto:[EMAIL

RE: [PHP-DB] Another question

2003-12-15 Thread Duane Lakoduk
You can avoid the prompt when using javascript to close the window if you use this: function closeit(){ window.opener = top; window.close(); } Now, window will close without prompting. hth, Duane -Original Message- From: Constantin Brinzoi [mailto:[EMAIL PROTECTED]

Re: [PHP-DB] Another question

2003-12-15 Thread Muhammed Mamedov
Really? What is the reason for that?... Muhammed. - Original Message - From: Duane Lakoduk [EMAIL PROTECTED] To: 'Constantin Brinzoi' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, December 15, 2003 3:17 PM Subject: RE: [PHP-DB] Another question You can avoid the prompt when

RE: [PHP-DB] Another question

2003-12-15 Thread Mike U. Petrov
] Subject: RE: [PHP-DB] Another question You can avoid the prompt when using javascript to close the window if you use this: function closeit(){ window.opener = top; window.close(); } Now, window will close without prompting. hth, Duane -Original Message- From

RE: [PHP-DB] Another question

2003-12-15 Thread Duane Lakoduk
In I.E. 5.5 and newer. -Original Message- From: Mike U. Petrov [mailto:[EMAIL PROTECTED] Sent: Monday, December 15, 2003 7:32 AM To: [EMAIL PROTECTED]; 'Constantin Brinzoi'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Another question I've tried to use this function, but it doesn't

RE: [PHP-DB] Another question

2003-12-15 Thread Duane Lakoduk
AM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Another question Really? What is the reason for that?... Muhammed. - Original Message - From: Duane Lakoduk [EMAIL PROTECTED] To: 'Constantin Brinzoi' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, December 15, 2003 3:17 PM

Re: [PHP-DB] Another question

2003-12-15 Thread Muhammed Mamedov
, Muhammed. - Original Message - From: Constantin Brinzoi [EMAIL PROTECTED] To: Muhammed Mamedov [EMAIL PROTECTED] Sent: Monday, December 15, 2003 4:05 PM Subject: Re: [PHP-DB] Another question The reason is that I want to logout from the system. I destroyed the session but the session

Re: [PHP-DB] Another question

2003-12-15 Thread Constantin Brinzoi
, Muhammed. - Original Message - From: Constantin Brinzoi [EMAIL PROTECTED] To: Muhammed Mamedov [EMAIL PROTECTED] Sent: Monday, December 15, 2003 4:05 PM Subject: Re: [PHP-DB] Another question The reason is that I want to logout from the system. I destroyed the session

Re: [PHP-DB] Another question

2003-12-15 Thread Muhammed Mamedov
, December 15, 2003 4:13 PM Subject: Re: [PHP-DB] Another question I destroy the session with: session_destroy() The file is deleted from the /tmp directory (which is good) but after that I want to go on another page (public space) and get rid of PHP_AUTH_USER and PHP_AUTH_PW. How can I do