php-general Digest 4 Sep 2010 16:45:28 -0000 Issue 6924

2010-09-04 Thread php-general-digest-help
php-general Digest 4 Sep 2010 16:45:28 - Issue 6924 Topics (messages 307841 through 307847): Re: PHP, Soap, and WDSL 307841 by: Jangita 307842 by: chris h 307843 by: SBS Computers Re: Questions about $_SERVER 307844 by: tedd Re: Secure Communication?

[PHP] a test (list is too quite)

2010-09-04 Thread tedd
Hi gang: Just checking to see if I am still receiving postings. :-) Cheers, tedd -- --- http://sperling.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] a test (list is too quite)

2010-09-04 Thread chris h
Evidently all is well in the world of php... :) On Sat, Sep 4, 2010 at 12:45 PM, tedd t...@sperling.com wrote: Hi gang: Just checking to see if I am still receiving postings. :-) Cheers, tedd -- --- http://sperling.com/ -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] a test (list is too quite)

2010-09-04 Thread tedd
At 12:47 PM -0400 9/4/10, chris h wrote: Evidently all is well in the world of php... :) If it was so, we would all be out of work. Instead, I think it's the lull before the storm. I'll ask a question to stir things up. :-) Cheers, tedd -- --- http://sperling.com/ -- PHP General

Re: [PHP] a test (list is too quite)

2010-09-04 Thread metastable
On 09/04/2010 06:47 PM, chris h wrote: Evidently all is well in the world of php... :) On Sat, Sep 4, 2010 at 12:45 PM, tedd t...@sperling.com wrote: Hi gang: Just checking to see if I am still receiving postings. :-) Cheers, tedd -- --- http://sperling.com/ -- PHP

Re: [PHP] a test (list is too quite)

2010-09-04 Thread Floyd Resler
On Sep 4, 2010, at 1:00 PM, tedd wrote: At 12:47 PM -0400 9/4/10, chris h wrote: Evidently all is well in the world of php... :) If it was so, we would all be out of work. Instead, I think it's the lull before the storm. I'll ask a question to stir things up. :-) Cheers, tedd Good

Re: [PHP] a test (list is too quite)

2010-09-04 Thread metastable
On 09/04/2010 08:03 PM, Floyd Resler wrote: On Sep 4, 2010, at 1:00 PM, tedd wrote: At 12:47 PM -0400 9/4/10, chris h wrote: Evidently all is well in the world of php... :) If it was so, we would all be out of work. Instead, I think it's the lull before the storm. I'll ask a question to

Re: [PHP] a test (list is too quite)

2010-09-04 Thread Marc Guay
Can I make a facebook site using PHP? If yes, how? Please send me the infos privately. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] a test (list is too quite)

2010-09-04 Thread chris h
On Sat, Sep 4, 2010 at 2:24 PM, Marc Guay marc.g...@gmail.com wrote: Can I make a facebook site using PHP? If yes, how? Please send me the infos privately. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php I'm also trying to make a

Re: [PHP] a test (list is too quite)

2010-09-04 Thread a...@ashleysheridan.co.uk
http://www.bash.org/?quote=76416 Meant to post this on Friday, but it works well here too! Thanks, Ash http://www.ashleysheridan.co.uk - Reply message - From: chris h chris...@gmail.com Date: Sat, Sep 4, 2010 19:42 Subject: [PHP] a test (list is too quite) To: php-general@lists.php.net

[PHP] Question about translating assoc. arrays to C

2010-09-04 Thread Joshua Kehn
I'm working on creating a compiled extension for some code I've written. Mostly it's manipulating a very large multi-demensional array of values. This is some pseudo code for the array. // Imagine this but much much bigger $big_ass_array = array('5' = array('0' = 4, '3' = 6, '8' = 7), '10' =

Re: [PHP] Question about translating assoc. arrays to C

2010-09-04 Thread Jim Lucas
Joshua Kehn wrote: I'm working on creating a compiled extension for some code I've written. Mostly it's manipulating a very large multi-demensional array of values. This is some pseudo code for the array. // Imagine this but much much bigger $big_ass_array = array('5' = array('0' = 4, '3' =

Re: [PHP] Question about translating assoc. arrays to C

2010-09-04 Thread Joshua Kehn
Jim- Yes, that was a typo. The issues was I didn't cut / paste and instead retyped it. Should be foreach($array as $key1 = $list) { foreach($list as $key2 = $value) I will check those links out, I had the first one not the second. Regards, -Josh