Re[4]: [PHP] Don't understand what is this $arr['N']['#']

2008-09-27 Thread ANR Daemon
Greetings, Richard Heyes. In reply to Your message dated Friday, September 26, 2008, 12:41:32, Please don't top post any more. thank you. Because it's such a cardinal sin and will result in you being sent straight to hell. I've heard that it's not so nice there at this time of year, though

Re: Re[4]: [PHP] Don't understand what is this $arr['N']['#']

2008-09-27 Thread Ashley Sheridan
On Sat, 2008-09-27 at 23:10 +0400, ANR Daemon wrote: Greetings, Richard Heyes. In reply to Your message dated Friday, September 26, 2008, 12:41:32, Please don't top post any more. thank you. Because it's such a cardinal sin and will result in you being sent straight to hell. I've heard

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-27 Thread Shawn McKenzie
Ashley Sheridan wrote: On Sat, 2008-09-27 at 23:10 +0400, ANR Daemon wrote: Greetings, Richard Heyes. In reply to Your message dated Friday, September 26, 2008, 12:41:32, Please don't top post any more. thank you. Because it's such a cardinal sin and will result in you being sent straight

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-27 Thread Ashley Sheridan
On Sat, 2008-09-27 at 18:09 -0500, Shawn McKenzie wrote: Ashley Sheridan wrote: On Sat, 2008-09-27 at 23:10 +0400, ANR Daemon wrote: Greetings, Richard Heyes. In reply to Your message dated Friday, September 26, 2008, 12:41:32, Please don't top post any more. thank you. Because it's

Re: Re[2]: [PHP] Don't understand what is this $arr['N']['#']

2008-09-26 Thread Richard Heyes
Please don't top post any more. thank you. Because it's such a cardinal sin and will result in you being sent straight to hell. I've heard that it's not so nice there at this time of year, though the heat is more bearable. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari:

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-26 Thread Nathan Rixham
well said :) Richard Heyes wrote: Please don't top post any more. thank you. Because it's such a cardinal sin and will result in you being sent straight to hell. I've heard that it's not so nice there at this time of year, though the heat is more bearable. -- PHP General Mailing List

Re[2]: [PHP] Don't understand what is this $arr['N']['#']

2008-09-25 Thread ANR Daemon
Greetings, It flance. In reply to Your message dated Thursday, September 25, 2008, 0:21:59, -Original Message- I am working on the code of a former employee and I don't understand what this $arr['N']['#'] refers to. I know it is a multidimensional associative array but

[PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread It flance
Hi, I am working on the code of a former employee and I don't understand what this $arr['N']['#'] refers to. I know it is a multidimensional associative array but the # i don't what this means. Thank you -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Thiago H. Pojda
Hello, On Wed, Sep 24, 2008 at 2:51 PM, It flance [EMAIL PROTECTED] wrote: Hi, I am working on the code of a former employee and I don't understand what this $arr['N']['#'] refers to. I'm not sure you can do that (can't test atm), but looks like a valid position as it's in ' '. I wonder

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 10:51 -0700, It flance wrote: Hi, I am working on the code of a former employee and I don't understand what this $arr['N']['#'] refers to. I know it is a multidimensional associative array but the # i don't what this means. Thank you Well,

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Jochem Maas
It flance schreef: Hi, I am working on the code of a former employee and I don't understand what this $arr['N']['#'] refers to. I know it is a multidimensional associative array but the # i don't what this means. it's a string ... used as the (associative) key to an array. the item you

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Richard Heyes
I am working on the code of a former employee and I don't understand what this $arr['N']['#'] refers to. They're just obscure array index names. I know it is a multidimensional associative array but the # i don't what this means. Nothing special. -- Richard Heyes HTML5 Graphing for

RE: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Richard Lynch
-Original Message- I am working on the code of a former employee and I don't understand what this $arr['N']['#'] refers to. I know it is a multidimensional associative array but the # i don't what this means. '#' is just a string value. It has no special meaning whatsoever.

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Nathan Nobbe
On Wed, Sep 24, 2008 at 1:00 PM, Richard Lynch [EMAIL PROTECTED] wrote: -Original Message- I am working on the code of a former employee and I don't understand what this $arr['N']['#'] refers to. I know it is a multidimensional associative array but the # i don't what this

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread It flance
hi, You're right. Because associative arrays are meant to make code easier to understand by using meaningful indexes. Thank you guys --- On Wed, 9/24/08, Nathan Nobbe [EMAIL PROTECTED] wrote: From: Nathan Nobbe [EMAIL PROTECTED] Subject: Re: [PHP] Don't understand what is this $arr['N