Re: [PHP] JavaDoc?

2001-03-15 Thread Bård Farstad
On Thursday 15 March 2001 02:59, Jonathan Sharp wrote: So i've heard bits and pieces that JavaDoc can parse out comments about php... does anyone have an example of a command line call to javadoc passing a PHP file? I've written an alternative PHP documentation tool. You can get it from:

Re: [PHP] new line in forms?

2001-03-11 Thread Bård Farstad
On Sunday 11 March 2001 14:37, Jens wrote: You have probably had this question a few times, but can anyone tell me how to detect "new line's" or breaks in form fealds from both PC and Mac. And then replacing the "new line" with a br so that I can use it for the web? $string = nl2br( $string

[PHP] Sessions, and timeout

2001-03-08 Thread Bård Farstad
Hi all, I have a timeout problem with sessions. I use the PHP session handling (4.0.4pl1). It works, but it times to fast out. I've set: ini_alter("session.gc_maxlifetime", "172800"); and phpinfo() says: session.cache_expire: local=172800, global=180 session.gc_maxlifetime: local=172800,

Re: [PHP] Sessions, and timeout

2001-03-08 Thread Bård Farstad
On Thursday 08 March 2001 11:14, Yasuo Ohgaki wrote: I guess your clients PC's clock is not accurate. How about set timeout to 0? Then session cookie will not timeout until browser is closed. Actually the server and client clock only differs with about 1 minute. The 0 timeout will not work. I