[PHP-DEV] PostgreSQL maintainer? Fixing problems?

2001-02-05 Thread Matthew Hagerty
Greetings, Can someone tell me if there is a PostgreSQL maintainer? Is someone working on the serious issues with pg_connect()?? Updating from 403 to 404pl1 just took down 4 eCommerce sites that we are hosting due to the infamous: "1 is not a valid PostgreSQL link resource" error. Thanks,

Re: [PHP-DEV] PHP can't compare...

2001-12-05 Thread Matthew Hagerty
At 12:09 PM 12/5/2001 +0200, Zeev Suraski wrote: >At 00:38 05/12/2001, Matthew Hagerty wrote: >>Okay, then why when I ask PHP to show me the value of $fFloat1, do I get >>this: >> >>printf("%f", $fFloat1); -> 63.67 >> >>Not s

[PHP-DEV] PHP can't compare...

2001-12-04 Thread Matthew Hagerty
Greetings, Explain to me why the first condition fails! Thanks, Matthew -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-DEV] PHP still can't compare...

2001-12-04 Thread Matthew Hagerty
Greetings, Another problem with PHP trying to make a simple comparison and failing... This works: $iQty = -1; if ( isset($g_aForm["qty_$iKey"]) AND is_numeric($g_aForm["qty_$iKey"]) ) $iQty = $g_aForm["qty_$iKey"]; But this does not: $iQty = ( isset($g_aForm["qty_$iKey"]) AND is_numer

Re: [PHP-DEV] PHP can't compare...

2001-12-04 Thread Matthew Hagerty
le representation, something like 3.551 perhaps. > >If you simply compare this: >3.550001 + 60.12001 != 63.666669 > >so that's why the comparison fails. > >Derick > >On Tue, 4 Dec 2001, Matthew Hagerty wrote: > > > Greetings

[PHP-DEV] Apology, was [Re: PHP still can't compare...]

2001-12-04 Thread Matthew Hagerty
erator precendence. Please ask for this kind of >support questions on the [EMAIL PROTECTED] mailinglist. > >Derick > >On Tue, 4 Dec 2001, Matthew Hagerty wrote: > > > Greetings, > > > > Another problem with PHP trying to make a simple comparison and failing... >

[PHP-DEV] Function prototype for PHP4?

2001-01-21 Thread Matthew Hagerty
Greetings, Is there a guide some place for adding functions to PHP4? There seems to be such a mix of old (PHP3) and new (PHP4) methods and it seems that every function I look at for examples seems to do it its own way. The PHP manual only outlines PHP3 functions and does not go into passing

Re: [PHP-DEV] Function prototype for PHP4?

2001-01-21 Thread Matthew Hagerty
I think I posted this to soon, I think I actually found what I am looking for on Zend's site. Sorry for the noise. Matthew At 11:31 PM 1/21/01 -0500, you wrote: >Greetings, > >Is there a guide some place for adding functions to PHP4? There seems to >be such a mix of old (PHP3) and new (PHP4