php-general Digest 22 Nov 2009 19:01:54 -0000 Issue 6455

2009-11-22 Thread php-general-digest-help
php-general Digest 22 Nov 2009 19:01:54 - Issue 6455 Topics (messages 300024 through 300032): Re: Recognizing double clicks 300024 by: Skip Evans 300025 by: Manuel Lemos 300026 by: Hans Åhlin 300030 by: Phpster 300031 by: tedd 300032 by: Mark

[PHP] My experience with the Forms Generation and Validation class

2009-11-22 Thread LinuxManMikeC
Just like to share my real world experience with Manuel Lemos' formsgeneration library. http://www.phpclasses.org/formsgeneration At work early this summer we had a project under a tight deadline that needed unified form creation, processing, and error reporting. I had seen Manuel promoting his

Re: [PHP] Which query is more correct?

2009-11-22 Thread LinuxManMikeC
On Sat, Nov 21, 2009 at 2:52 PM, Nathan Rixham nrix...@gmail.com wrote: Rick Pasotto wrote: On Fri, Nov 20, 2009 at 04:41:58PM -0600, LAMP wrote: Hi, I need to pull all records from the table Registrants they are NOT in the table ToBeRecleared Registrants.Reg_ID is PK

Re: [PHP] Creating users and generating privileges for users

2009-11-22 Thread LinuxManMikeC
On Sat, Nov 21, 2009 at 7:05 AM, tedd tedd.sperl...@gmail.com wrote: At 6:36 PM -0600 11/20/09, nitin reddy wrote: Hey can one help me in creating different users using mysql for php and assigning different privileges for them ..any sample code available? -- PASULA NITIN REDDY Graduate

Re: [PHP] Recognizing double clicks

2009-11-22 Thread Phpster
Yep Bastien Sent from my iPod On Nov 22, 2009, at 12:34 AM, Skip Evans s...@bigskypenguin.com wrote: It just dawned on me the button may be disabled right when it's clicked to prevent a double submit? Is that doable? Skip Skip Evans wrote: Hey all, Every site I've ever stuck a credit

Re: [PHP] Recognizing double clicks

2009-11-22 Thread tedd
At 11:30 PM -0600 11/21/09, Skip Evans wrote: Hey all, Every site I've ever stuck a credit card into said only click once I just this requirement from a client. a.System should recognize a duplicated click, so the message in red only click once should be unnecessary. Is this doable???

Re: [PHP] Recognizing double clicks

2009-11-22 Thread Mark Kelly
Hi. On Sunday 22 Nov 2009 at 05:34 Skip Evans wrote: It just dawned on me the button may be disabled right when it's clicked to prevent a double submit? Is that doable? To mark a button as disabled after it has been clicked to prevent it being clicked twice just add some simple code in the

[PHP] PHP and XML

2009-11-22 Thread Juan Marcelo Rodríguez Monti
Hi people, I have some doubts about this topic that I'm gonna explain. I have a few sites in flash, and I was requested to write a PHP frontend to send news. I have this already done and it works perfect. It's a LAMP App to send and edit news, post video, images and so on. Then, I need to

Re: [PHP] Using $$

2009-11-22 Thread LinuxManMikeC
On Fri, Nov 20, 2009 at 12:28 AM, Arno Kuhl ak...@telkomsa.net wrote: -Original Message- From: Ford, Mike [mailto:m.f...@leedsmet.ac.uk] Sent: 19 November 2009 07:06 PM To: php-general@lists.php.net Subject: RE: [PHP] Using $$ -Original Message- From: Arno Kuhl

Re: [PHP] PHP and XML

2009-11-22 Thread Phpster
I would just use concatenations and strings to build the XML. It's not gonna matter to the flash swf when it gets the string as it will attempt the data as XML. Bastien Sent from my iPod On Nov 22, 2009, at 2:27 PM, Juan Marcelo Rodríguez Monti j...@rodriguezmonti.com.a r wrote: Hi

Re: [PHP] PHP and XML

2009-11-22 Thread Sudheer Satyanarayana
What do you recommend me to produce XML from those news of the SQL database?. What do you suggest to output XML from the existing content to then put those XML files into Flash. The posted news are saved in a MySQL database. I don't know if do I need to output from PHP then parse the output