Re: [PHP-WIN] Re: IE 5.5,authentication,PHP sessions: IE never stops running?

2001-03-03 Thread John Henckel
Ken, I didn't believe you that IE was so stupidly implemented until I tried it myself. You are right, IE 5 rememebers the password even though I hit CANCEL on the re-authenticate prompt. And it remembers the password even when I close all browser windows. If you decide to store authenticatio

RE: [PHP-WIN] pulling arrays from nested arrays?

2001-03-03 Thread Doug Brewer
Perhaps I was unclear...I actually _want_ to modify the copy, that's why I made a copy, to preserve the original. My point was that this doesn't seem to create a valid copy of the original array: $new_array = $first_array["second array"]; Operations on $new_array seem to fail, because it isn't a

php-windows Digest 4 Mar 2001 04:02:49 -0000 Issue 473

2001-03-03 Thread php-windows-digest-help
php-windows Digest 4 Mar 2001 04:02:49 - Issue 473 Topics (messages 5806 through 5811): Re: expat 5806 by: alain samoun pulling arrays from nested arrays? 5807 by: Doug Brewer 5808 by: Ernest E Vogelsinger IE 5.5,authentication,PHP sessions: IE never stops running?

[PHP-WIN] Re: IE 5.5,authentication,PHP sessions: IE never stops running?

2001-03-03 Thread Ken
Thanks for the idea, John. I know about the auth logout. Unfortunately, that means that when a user clicks "logout", he gets a "log in" prompt! And, in IE, he has to deliberately blank out the password field, THEN hit enter, THEN the prompt will come again, and he has to hit escape. There's

Re: [PHP-WIN] IE 5.5,authentication,PHP sessions: IE never stops running?

2001-03-03 Thread John Henckel
I, too, am using PHP with authentication and IE 5. However I am using .htaccess to generate the headers instead of PHP. I found this text... a quote from PHP manual. >Both Netscape and Internet Explorer will clear the local browser window's >authentication cache for the realm upon receivi

[PHP-WIN] IE 5.5,authentication,PHP sessions: IE never stops running?

2001-03-03 Thread Ken
I'm experiencing strange behavior with my user authentication scheme in my PHP app, with users using IE 5.5. I am using browser authentication (WWW-Authenticate and 401 headers), "no cache" headers, and PHP 4 sessions. I am finding that even when the user totally quits IE, if he then restarts

Re: [PHP-WIN] pulling arrays from nested arrays?

2001-03-03 Thread Ernest E Vogelsinger
At 01:21 04.03.2001, Doug Brewer said: [snip] >$new_array = $first_array["second array"]; # what's wrong with this? this is a copy of $first_array["second array"]. >while(list($this, $that) = each($new_array)) { > # doesn't work! >} this modifies th

[PHP-WIN] pulling arrays from nested arrays?

2001-03-03 Thread Doug Brewer
Hello, looking for some insight on the behavior of arrays. I've got an array. One of the elements of that array is another array. If I refer to it this way, I can get at it: while(list($this, $that) = each($first_array["second array"])) { # it works! } But let's say I want to alter the

RE: [PHP-WIN] expat

2001-03-03 Thread alain samoun
With Apache it works for me... For instructions, try the example of this article: http://www.phpbuilder.com/columns/justin2428.php3 There is an error at the end of the xml file, should be after this correction, everything works. Message from Alain Samoun [EMAIL PROTECTED] -Original Me

php-windows Digest 3 Mar 2001 15:49:14 -0000 Issue 472

2001-03-03 Thread php-windows-digest-help
php-windows Digest 3 Mar 2001 15:49:14 - Issue 472 Topics (messages 5801 through 5805): Microsoft Access prepared statement with parameters problem 5801 by: Chris Poirier 5805 by: Gonzalo Vera Re: Cash Offer!! 5802 by: hollyjacobsemail77.excelonline.com 5803

Re: [PHP-WIN] Microsoft Access prepared statement with parameters problem

2001-03-03 Thread Gonzalo Vera
Some possibilities: > $statement = odbc_prepare( $connection, "select * from System where A=?" ); Probably you would be better off using single quotes in the condition, since you are tryng to match strings, like: $statement=odbc_prepare($connection,"select * from System where A='?'");

[PHP-WIN] $PHP_SELF not producing the goods.

2001-03-03 Thread Jess Perez
Hi, I am using PHP4.0.4pl1 in cgi mode Apache 1.3.14 WIN2000 I point my browser at www.domain.com/phpinfo.php and the $PHP_SELF variable to contains "/php/php.exe/phpinfo.php" instead of just "phpinfo.php". Anyone know what is causing this and how to correct it? The manual says it is supposed

[PHP-WIN] Fwd: Req: Cash Offer!!

2001-03-03 Thread jannetfreebish67
Hey...Janet Here... We Haven't Talked In So Long!! How Have You Been? Thought I would Forward you this email! I usually delete these but I opened this one, like what I saw, and thought you would like to see this. http://www.geocities.com/rush009900/ IF THE LINK IS NOT HIGHLIGHTED OR YOU CA

[PHP-WIN] Fwd: Req: Cash Offer!!

2001-03-03 Thread hollyjacobsemail77
hi there, please take a moment to check out the newest cash offer. cash is waiting for you! Click Below Or copy the link and paste it in your browser http://www.geocities.com/omega99/ -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

[PHP-WIN] Microsoft Access prepared statement with parameters problem

2001-03-03 Thread Chris Poirier
Hi there, I'm attempting to execute prepared statements with parameters against an Access 97 database, and am having some trouble. I'm sure I'm missing something really obvious, but I just can't see it, and I'm hoping someone out there can help. In the following code, assume that $connection ho