[PHP] Re: Sessions on clustered machines

2002-06-06 Thread Ilker Cetinkaya
cameron, afaik it's not a big issue, as far as you have a central point - a database for example. you can write your own handlers for session, check http://www.php.net/manual/en/function.session-set-save-handler.php i guess the solution is to write a session-handler which stores sessions in dat

Re: [PHP] OOP Question in PHP

2002-06-06 Thread Ilker Cetinkaya
"Scott Hurring" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Depends ;-) yea, really depnds, but as you mentioned, having parameterless constructors are more generic, especially when it comes to derive the classes. > > instead (with option #2), you could

[PHP] Re: probelem with script

2002-06-05 Thread Ilker Cetinkaya
you're casting is wrong, instead of $s = int filesize($f); do $s = (int)filesize($f); btw - next time an error message would help your helper :-) hth ilker "_michael" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > /* > what i'm trying to do is read the fi