Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread Lester Caine
Joshua Stoutenburg wrote: Is there a way to reconfigure gmail settings to prevent this? This is a long standing irritation for many of us ;) I believe that most clients do have a setting to 'start message after quoting' One of the other suggestions has been simply to switch off quoting altogeth

Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread George Langley
On 2011-09-09, at 12:39 PM, Larry Martell wrote: > On Fri, Sep 9, 2011 at 12:36 PM, Daniel Brown wrote: >> On Fri, Sep 9, 2011 at 14:30, Robert Cummings wrote: >>> >>> Oblig: http://www.youtube.com/watch?v=sUntx0pe_qI >> >>I didn't know it was possible to fill almost four minutes with a >

Re: [PHP] Repetitive answers . . .

2011-09-09 Thread Tedd Sperling
On Sep 9, 2011, at 2:36 PM, Daniel Brown wrote: > On Fri, Sep 9, 2011 at 14:30, Robert Cummings wrote: >> >> Oblig: http://www.youtube.com/watch?v=sUntx0pe_qI > >I didn't know it was possible to fill almost four minutes with a > single note, outside of a test pattern. That's got to be the w

Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread Larry Martell
On Fri, Sep 9, 2011 at 12:36 PM, Daniel Brown wrote: > On Fri, Sep 9, 2011 at 14:30, Robert Cummings wrote: >> >> Oblig: http://www.youtube.com/watch?v=sUntx0pe_qI > >    I didn't know it was possible to fill almost four minutes with a > single note, outside of a test pattern.  That's got to be t

Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread Daniel Brown
On Fri, Sep 9, 2011 at 14:30, Robert Cummings wrote: > > Oblig: http://www.youtube.com/watch?v=sUntx0pe_qI I didn't know it was possible to fill almost four minutes with a single note, outside of a test pattern. That's got to be the worst "singer" I've ever heard in my entire life. -- Net

Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread Robert Cummings
On 11-09-09 02:24 PM, George Langley wrote: On 2011-09-09, at 11:34 AM, Marc Guay wrote: That low-hanging fruit is too hard for some to resist... --- Phishing is a art. Did anyone notice it's Friday? Oblig: http://www.youtube.com/watch?v=sUntx0pe_qI Cheers, Rob. -- E-Mail D

Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread Robert Cummings
On 11-09-09 02:19 PM, Joshua Stoutenburg wrote: Is there a way to reconfigure gmail settings to prevent this? Yes, just filter all PHP mail to junk. But in all reality, I can't imagine an email filter, short of genius AI, that could determine that one message was the best answer and then auto

Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread George Langley
On 2011-09-09, at 11:34 AM, Marc Guay wrote: > That low-hanging fruit is too hard for some to resist... --- Phishing is a art. George -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Repetitive answers . . .

2011-09-09 Thread Tedd Sperling
On Sep 9, 2011, at 1:30 PM, Shawn McKenzie wrote: > On 09/09/2011 12:04 PM, Joshua Stoutenburg wrote: >> NOTE: There could be lag caused by network and server technologies. >> Perhaps answers arrive during the time it takes a person to prepare an >> answer. These are forgivable. > > This is the

Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread Joshua Stoutenburg
Is there a way to reconfigure gmail settings to prevent this?

RE: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread HallMarc Websites
PS Top posting is frowned upon on this list for reasons regarding how the information is parsed to the online archive. Not a reprimand, just a FYI -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread Joshua Stoutenburg
I guess so. On Fri, Sep 9, 2011 at 10:34 AM, Marc Guay wrote: > That low-hanging fruit is too hard for some to resist... > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > >

Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread Marc Guay
That low-hanging fruit is too hard for some to resist... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Repetitive answers . . .

2011-09-09 Thread Shawn McKenzie
On 09/09/2011 12:04 PM, Joshua Stoutenburg wrote: > NOTE: There could be lag caused by network and server technologies. > Perhaps answers arrive during the time it takes a person to prepare an > answer. These are forgivable. This is the reason, same as on any other public mailing list. Better t

Re: [PHP] Repetitive answers . . .

2011-09-09 Thread Daniel Brown
On Fri, Sep 9, 2011 at 13:04, Joshua Stoutenburg wrote: > I'm new to this email list . . . > > But is it customary to answer a question after it's already been adequately > answered? [snip!] > NOTE:  There could be lag caused by network and server technologies. > Perhaps answers arrive during the

[PHP] Repetitive answers . . .

2011-09-09 Thread Joshua Stoutenburg
I'm new to this email list . . . But is it customary to answer a question after it's already been adequately answered? Not trying to step on any toes. I just think if I were asking the question, it would be unpleasant to continue receiving answers, especially the same answer, after receiving one

Re: [PHP] array problem

2011-09-09 Thread Ashley Sheridan
You are echoing out an array. If you use something like print_r() or var_dump() you will see the array elements Thanks, Ash http://www.ashleysheridan.co.uk -- Sent from my Android phone with K-9 Mail. Please excuse my brevity. Marc Fromm wrote: I am reading a csv file into an array. The csv fil

Re: [PHP] array problem

2011-09-09 Thread Adam Balogh
hi, try to use print_r or var_dump to echo compound data type

Re: [PHP] array problem

2011-09-09 Thread Steve Staples
On Fri, 2011-09-09 at 16:00 +, Marc Fromm wrote: > I am reading a csv file into an array. The csv file. > > users.csv file contents: > w12345678,a > w23456789,b > w34567890,c > > $csvfilename = "users.csv"; > $handle = fopen($csvfilename, "r"); >

Re: [PHP] array problem

2011-09-09 Thread Joshua Stoutenburg
The function fgetcsv() returns an array. http://php.net/manual/en/function.fgetcsv.php On Fri, Sep 9, 2011 at 9:00 AM, Marc Fromm wrote: > I am reading a csv file into an array. The csv file. > > users.csv file contents: > w12345678,a > w23456789,b > w34567890,c > >

[PHP] array problem

2011-09-09 Thread Marc Fromm
I am reading a csv file into an array. The csv file. users.csv file contents: w12345678,a w23456789,b w34567890,c $csvfilename = "users.csv"; $handle = fopen($csvfilename, "r"); if($handle) {