Re: [PHP] storing passwords in $_SESSION

2005-10-10 Thread Emil Novak
Oh, just username... That's good idea. Emil NOVAK LAMP Developer On 10/10/05, Dan Brow <[EMAIL PROTECTED]> wrote: > I was meaning just the username, not the password, still the same issue? > > On Mon, 2005-10-10 at 21:35 +0200, Emil Novak wrote: > > Yet another unsafe w

Re: [PHP] storing passwords in $_SESSION

2005-10-10 Thread Emil Novak
;s the fastest, safest and the easiest way to solve the problem. Emil NOVAK LAMP Developer On 10/10/05, Dan Brow <[EMAIL PROTECTED]> wrote: > Well, um. ya. Back to the drawing board. Save it in a cookie? > > On Mon, 2005-10-10 at 14:59 -0400, Kilbride, James wrote: > > If the se

Re: [PHP] creating a shopping cart.

2005-10-01 Thread Emil Novak
http://www.php.net/oop5 . Emil NOVAK, Slovenia, EU -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Testing for an empty array (with null values)

2005-09-30 Thread Emil Novak
Better use is empty(), which supports array as parameter: $test = array(); if(empty($test)) // true { // code... } else // false { } Emil Novak, Slovenia, EU -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Query - Warning: Cannot modify header information

2005-09-30 Thread Emil Novak
You can simply avoid that by buffering the output: or (older versions of PHP): Emil Novak, Slovenia, EU -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Server Time Out

2005-09-30 Thread Emil Novak
That should work! Emil Novak, Slovenia, EU -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Array within array

2005-09-30 Thread Emil Novak
Like this? Emil Novak, Slovenia, EU -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] error when open files

2005-09-28 Thread Emil Novak
If this isn't local webserver, you maybe have a problem with allow_url_fopen: http://www.php.net/manual/en/ref.filesystem.php#ini.allow-url-fopen Or if this is on your local server, you can try this: $fp = fopen("/A.zip", "r"); Your sincerely Emil NOVAK, Slovenia, EU