[PHP-DB] Another question

2003-12-15 Thread Constantin Brinzoi
Is there a php function that closes a browser window? I know there is a javascript function (window.close), but I can't use it because it complains that the window is not opened by javascript (window.open). I looked over the function reference but I didn't find anything about this problem. TIA

RE: [PHP-DB] Another question

2003-12-15 Thread Mike U. Petrov
PROTECTED] Sent: Monday, December 15, 2003 3:15 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Another question Is there a php function that closes a browser window? I know there is a javascript function (window.close), but I can't use it because it complains that the window is not opened by javascript

RE: [PHP-DB] Another question

2003-12-15 Thread Duane Lakoduk
] Sent: Monday, December 15, 2003 6:15 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Another question Is there a php function that closes a browser window? I know there is a javascript function (window.close), but I can't use it because it complains that the window is not opened by javascript

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

[PHP-DB] Another Question

2003-10-06 Thread zxx10
Hi, All: I have some information stored in the database. When I try to show them, sometimes it give me the following warning: Warning: printf(): Too few arguments ... Here is the problematic code: printf(textarea COLS=56 ROWS=7 name=\description\$des/textarea br); I figured out that if there