Page 3 of 3

Posted: Wed Jul 26, 2006 5:51 pm
by Luke
I REALLY like it. I already used it. LOL

Posted: Thu Jul 27, 2006 1:15 am
by julian_lp
The Ninja Space Goat wrote:I REALLY like it. I already used it. LOL
Please keep us informed of further changes. I like it a lot as well ;)

Posted: Thu Jul 27, 2006 3:11 am
by Chris Corbyn
julian_lp wrote:
The Ninja Space Goat wrote:I REALLY like it. I already used it. LOL
Please keep us informed of further changes. I like it a lot as well ;)
I guess it could be placed in Code Snippets and then versioned if it would be used :)

Posted: Thu Jul 27, 2006 9:36 pm
by julian_lp
d11wtq wrote:
julian_lp wrote:
The Ninja Space Goat wrote:I REALLY like it. I already used it. LOL
Please keep us informed of further changes. I like it a lot as well ;)
I guess it could be placed in Code Snippets and then versioned if it would be used :)
yeah, I second that idea

Posted: Thu Jul 27, 2006 11:10 pm
by Luke
julian_lp wrote:
d11wtq wrote:
julian_lp wrote: Please keep us informed of further changes. I like it a lot as well ;)
I guess it could be placed in Code Snippets and then versioned if it would be used :)
yeah, I second that idea
box madness!

Anyway... I've already put this to use in 2 projects. Thanks d11

Posted: Fri Jul 28, 2006 12:36 am
by Ward
astions wrote:If you use mysql_fetch_assoc, you won't have to specify whether you want associative or indexed values as both will be returned..
You've got it backwards: mysql_fetch_assoc will return an associative array(text keys), and mysql_fetch_array will return both text and numeric keys.

Posted: Fri Jul 28, 2006 6:15 am
by Jenk
Ward wrote:
astions wrote:If you use mysql_fetch_assoc, you won't have to specify whether you want associative or indexed values as both will be returned..
You've got it backwards: mysql_fetch_assoc will return an associative array(text keys), and mysql_fetch_array will return both text and numeric keys.
actually, *array returns numerical only unless specified with the optional arg, assoc returns both. (Atleast the last time I actually looked, around release 5.0.1)

Posted: Fri Jul 28, 2006 8:44 am
by feyd
array does both (unless otherwie specified in the call), assoc is named only, row is numeric only.