php-general Digest 28 Oct 2010 09:40:57 -0000 Issue 7010

2010-10-28 Thread php-general-digest-help
php-general Digest 28 Oct 2010 09:40:57 - Issue 7010 Topics (messages 309123 through 309127): Re: Array problem 309123 by: Kevin Kinsey 309127 by: Richard Quadling Re: Documentation 309124 by: Rico Secada Re: Receiving Live data 309125 by: Daniel Brown

Re: [PHP] Array problem

2010-10-28 Thread Richard Quadling
On 27 October 2010 22:15, Kevin Kinsey k...@daleco.biz wrote: Marc Guay wrote: As Nicholas pointed out, the extra underscore in the key is the issue. That's way too easy a fix.  I think he should check to make sure his version of PHP was compiled with the right extensions and that the

RE: [PHP] Documentation

2010-10-28 Thread Jay Blanchard
[snip]...[/snip] http://evolt.org/node/21173 This is an article that I wrote long ago (it needs some severe updating) that speaks to a lot of the phases of documentation. Any application typically has several audiences; developers, administrators, supporters and users are just an example of the

RE: [PHP] Array problem

2010-10-28 Thread Bob McConnell
From: Richard Quadling On 27 October 2010 22:15, Kevin Kinsey k...@daleco.biz wrote: Marc Guay wrote: As Nicholas pointed out, the extra underscore in the key is the issue. That's way too easy a fix.  I think he should check to make sure his version of PHP was compiled with the right

[PHP] PHP Question

2010-10-28 Thread Paulo Work
Hello my name is Paulo Carvalho and I am struggling with the following: I am building a website with basic CMS functionality. My problem is that in one of the pages I am using Easyslider to display small comments about the clients. These comments are divided in 3 per slide. ex:(li pcomment

[PHP] form post question

2010-10-28 Thread Jack
I have a form which has the following: ( quick clip ) form id=form1 name=form1 method=post action=http://www.abc.com/processing/process_form.php; onSubmit=return preSubmit(); label input name=area_interest type=checkbox id=field13 value=Peer Guide /

Re: [PHP] form post question

2010-10-28 Thread Bastien Koert
On Thu, Oct 28, 2010 at 10:12 AM, Jack jacklistm...@gmail.com wrote: I have a form which has the following: ( quick clip )  form id=form1 name=form1 method=post action=http://www.abc.com/processing/process_form.php; onSubmit=return preSubmit();     label                input

Re: [PHP] form post question

2010-10-28 Thread Floyd Resler
On Oct 28, 2010, at 10:12 AM, Jack wrote: I have a form which has the following: ( quick clip ) form id=form1 name=form1 method=post action=http://www.abc.com/processing/process_form.php; onSubmit=return preSubmit(); label input name=area_interest

Re: [PHP] form post question

2010-10-28 Thread Kevin Kinsey
Bastien Koert wrote: On Thu, Oct 28, 2010 at 10:12 AM, Jack jacklistm...@gmail.com wrote: I have a form which has the following: ( quick clip ) form id=form1 name=form1 method=post action=http://www.abc.com/processing/process_form.php; onSubmit=return preSubmit(); label

Re: [PHP] PHP Question

2010-10-28 Thread Kevin Kinsey
Paulo Work wrote: Hello, Paulo! I am building a website with basic CMS functionality. My problem is that in one of the pages I am using Easyslider to display small comments about the clients. These comments are divided in 3 per slide. ex:(li pcomment 1/p pcomment 1/p pcomment 1/p /li) I am

[PHP] Reply to an EMAIL get posted in a mySQL TABLE

2010-10-28 Thread Don Wieland
Hi gang, I use a Project Management System (PM) that generates emails to my account. I can REPLY to that email and it will be inserted into the PM. I believe the ID is in the subject. I assume the email is sent to a specified email and there is a CRON JOB that runs a PHP script to query

Re: [PHP] Reply to an EMAIL get posted in a mySQL TABLE

2010-10-28 Thread Bastien Koert
On Thu, Oct 28, 2010 at 1:24 PM, Don Wieland d...@dwdataconcepts.com wrote: Hi gang, I use a Project Management System (PM) that generates emails to my account. I can REPLY to that email and it will be inserted into the PM. I believe the ID is in the subject. I assume the email is sent to a

Re: [PHP] Reply to an EMAIL get posted in a mySQL TABLE

2010-10-28 Thread PW
Oh yeah one other thing that confused me at first... The various articles talk about having PHP installed as CGI, but all modern PHP installs include PHP command line interface (CLI). This serves the same purpose. No CGI required. On Oct 28, 2010, at 12:24 PM, Don Wieland wrote: Hi gang,

Re: [PHP] Reply to an EMAIL get posted in a mySQL TABLE

2010-10-28 Thread PW
Weird! I just got back on this list by accident last night and I just happen to be writing one of these this moment. The general scheme is: -Create a mail alias that points to a PHP cli script. -Write a script that parses out the DB stuff you need etc. (How hard can that be!?) No need for

Re: [PHP] Reply to an EMAIL get posted in a mySQL TABLE

2010-10-28 Thread PW
Weird! I just got back on this list by accident last night and I just happen to be writing one of these this moment. The general scheme is: -Create a mail alias that points to a PHP cli script. -Write a script that parses out the DB stuff you need etc. (How hard can that be!?) No need for

[PHP] PHP with POSIX style message queues (mq_open() and friends)

2010-10-28 Thread Jameson Williams
Hello, I need some way to interact with a POSIX message queue from PHP. I am already aware that the PHP library provides for manipulation of Sys V style queues (msg_get_queue(), etc.), but I cannot change the queue. I am hoping to accomplish this capability in a portable way, avoiding external

Re: [PHP] PHP Question

2010-10-28 Thread Jim Lucas
Paulo Work wrote: Hello my name is Paulo Carvalho and I am struggling with the following: I am building a website with basic CMS functionality. My problem is that in one of the pages I am using Easyslider to display small comments about the clients. These comments are divided in 3 per

Re: [PHP] PHP with POSIX style message queues (mq_open() and friends)

2010-10-28 Thread Nathan Nobbe
On Thu, Oct 28, 2010 at 12:52 PM, Jameson Williams jame...@jamesonwilliams.com wrote: Hello, I need some way to interact with a POSIX message queue from PHP. I am already aware that the PHP library provides for manipulation of Sys V style queues (msg_get_queue(), etc.), but I cannot change