Re: [PHP-DB] win32 Timestamp problem

2004-03-10 Thread Jason Wong
On Wednesday 10 March 2004 04:36, J. Kevin C. Burton wrote: Hey all, after reading documentation on the Win32 bug regarding Timestamps not being able to go prior than 1970.. I am in need of a way to calculate someone's age. Has anyone found a fix or workaround for this bug? Or a way to

Re: [PHP-DB] JPGRAPH, problem...

2004-03-10 Thread Jason Wong
On Sunday 08 February 2004 05:16, Carlos D. Carrasco wrote: You're asking on the wrong list. As your problem does not involve the use of databases with PHP it should be asked on the php-general list. Also your clock is about a month slow, please fix it. I did resolve my problem about the

RE: [PHP-DB] win32 Timestamp problem

2004-03-10 Thread Ford, Mike [LSS]
On 09 March 2004 20:36, J. Kevin C. Burton wrote: Hey all, after reading documentation on the Win32 bug regarding Timestamps not being able to go prior than 1970.. I am in need of a way to calculate someone's age. Has anyone found a fix or workaround for this bug? Or a way to calculate

Re: [PHP-DB] win32 Timestamp problem

2004-03-10 Thread IMAC, Sebastian Mangelkramer
Will this fit you needs? ?php $birthdate=xx.xx.; $parth=explode(.,$birthdate); $seconds=mktime(0,0,0,$parth[1],$parth[0],$parth[2]); $seconds=time()-$seconds; $age=date(Y,$seconds)-1970; echo $age; ? Am Mittwoch, 10. März 2004 12:31 schrieb Ford, Mike [LSS]: On 09 March 2004 20:36, J.

Re: [PHP-DB] win32 Timestamp problem

2004-03-10 Thread John Lim
Hi, See http://php.weblogs.com/adodb_date_time_library I wrote this to fix this problem. INTRODUCTION PHP native date functions use integer timestamps for computations. Because of this, dates are restricted to the years 1901-2038 on Unix and 1970-2038 on Windows due to integer overflow for

[PHP-DB] Re: PHP5B5 + Oracle9i + Apache1.3

2004-03-10 Thread Benjamin Müller
Hi, same here [Wed Mar 10 14:42:10 2004] [notice] child pid 11646 exit signal Segmentation fault (11) [Wed Mar 10 14:42:10 2004] [notice] child pid 11648 exit signal Segmentation fault (11) [Wed Mar 10 14:42:10 2004] [notice] child pid 11649 exit signal Segmentation fault (11) but with PHP5b4 /

Re: [PHP-DB] getting BLOBS (ORACLE) back to filesystem

2004-03-10 Thread Christopher Jones
Elke Stahl wrote: i successfully stored blobs in an oracle table via php. but it seems to be impossible getting them back to filesystem! It is a binary (no picture or executable) which arives via mail and is written into a unix-filesystem. ive stored this binary as blob datatype together with

Re: [PHP-DB] PHP5B5 + Oracle9i + Apache1.3

2004-03-10 Thread Christopher Jones
Josef Suchanek wrote: my platform is W2K or WXP. For the first I tried Apache 1.3.22 included in Oracle 9i installation with bad result. Then I tested Apache 1.3.29 with the same bad result. Then I tried IIS without problem and last test was with Apache 2.0.48. It worked fine too. What about