[PHP-DEV] Re: #17088 [Com]: GET/POST variables not registered

2003-01-22 Thread Derick Rethans
On 22 Jan 2003 [EMAIL PROTECTED] wrote: > Right now CVS HEAD isn't building with a > '/ext/standard/basic_functions.c:2827: `ZEND_INI_PARSER_POP_ENTRY' > undeclared (first use in this function)' but I'm working on that. > (Last time this happened I had to re-checkout the source tree, which > indi

Re: [PHP-DEV] foreach nastiness with references (bug #21702)

2003-01-22 Thread Vaclav Dvorak
Moriyoshi Koizumi wrote: I tried to answer this question in the bug report page. [...] 1) Each time before entering a foreach loop, php first tries to make a copy of the array being iterated. 2) In case the array variable is either referenceing another variable or referenced by another va

[PHP-DEV] INI_STR usage in browscap (and others) causes crash

2003-01-22 Thread Shane Caraveo
Hello, We have several places in our code (specificly in browscap.c) where we have bugs due to either improper usage of INI_STR, or improper results from zend_ini.c:zend_ini_string. The code: if (INI_STR("browscap")) { zend_hash_destroy(&browser_hash); } Will fail if there is no 'brows

[PHP-DEV] inserting into mysql

2003-01-22 Thread Diana Castillo
When I insert a date into Mysql it has to be in year/month/day format or else it wont go in right. how do I convert my date variable which is in month /day /year format into year/month/day format? -- Productos de salud: http://www.nvtechnologies.com/hgh -- PHP Development Mailing List

Re: [PHP-DEV] foreach nastiness with references (bug #21702)

2003-01-22 Thread Moriyoshi Koizumi
On Wed, Jan 22, 2003 at 04:12:18PM +0100, Vaclav Dvorak wrote: > Moriyoshi Koizumi wrote: > >I tried to answer this question in the bug report page. > [...] > >1) Each time before entering a foreach loop, php first tries to make a > >copy of > > the array being iterated. > > > >2) In case the ar

Re: [PHP-DEV] foreach nastiness with references (bug #21702)

2003-01-22 Thread Vaclav Dvorak
Moriyoshi Koizumi wrote: Moriyoshi Koizumi wrote: 1) Each time before entering a foreach loop, php first tries to make a copy of the array being iterated. 2) In case the array variable is either referenceing another variable or referenced by another variable, no copy is made here and the orig

[PHP-DEV] Distributing Extensions

2003-01-22 Thread Brian Moon
I have made and tested (originally againts 4.2.1 now against 4.3.0) a C extension to PHP that allows you to name variables in the ini file that are to be treated as super globals. This is very handy for dealnews as we have several variables (database object, directory paths, etc.) that are constan

Re: [PHP-DEV] Distributing Extensions

2003-01-22 Thread George Schlossnagle
On Thursday, January 23, 2003, at 12:17 AM, Brian Moon wrote: Is PECL ready for this stuff? Yes. -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] inserting into mysql

2003-01-22 Thread Derick Rethans
Hello, please forward user questions to the [EMAIL PROTECTED] mailinglist, this list is for development _OF_ PHP, not development _with_ PHP. Derick On Wed, 22 Jan 2003, Diana Castillo wrote: > When I insert a date into Mysql it has to be in year/month/day format or > else it wont go in right.