php-general Digest 17 Sep 2011 21:47:22 -0000 Issue 7483

2011-09-17 Thread php-general-digest-help
php-general Digest 17 Sep 2011 21:47:22 - Issue 7483 Topics (messages 314919 through 314924): mysql adapter and DAL 314919 by: shahrzad khorrami 314920 by: jean-baptiste verrey 314922 by: Nilesh Govindarajan Re: Round with money_format 314921 by: Bill Guion

Fwd: [PHP] Help on number matching function

2011-09-17 Thread tamouse mailing lists
Notice: This communication, including attachments, may contain information that is confidential. It constitutes non-public information intended to be conveyed only to the designated recipient(s). If the reader or recipient of this communication is not the intended recipient, an employee or

[PHP] mysql adapter and DAL

2011-09-17 Thread shahrzad khorrami
hi all, I'm looking for a mysql adapter for create my dal.. where can I find a good one? and have you ever written a dal with a mysql adapter? in my dal I want to pass parameters to sql sting, for example like following: $db-query($sql, array($name, $family)) thanks, Shahrzad Khorrami

Re: [PHP] mysql adapter and DAL

2011-09-17 Thread jean-baptiste verrey
hi, If you are building your own dal I guess you would have to build your own adapter, simply use mysqli function and wrap them in a class. On 17 September 2011 12:24, shahrzad khorrami shahrzad.khorr...@gmail.comwrote: hi all, I'm looking for a mysql adapter for create my dal.. where can I

Re: Re: [PHP] Round with money_format

2011-09-17 Thread Bill Guion
On Sep 17, 2011, at 3:46 AM, Cyril Lopez wrote: From: Cyril Lopez cy...@nethik.fr Date: September 16, 2011 10:58:28 AM EDT To: php-general@lists.php.net Subject: Round with money_format Hi, Can someone help me understand how money_format() rounds numbers ? ?php setlocale(LC_ALL,

Fwd: Re: [PHP] mysql adapter and DAL

2011-09-17 Thread Nilesh Govindarajan
Sorry, I clicked the 'reply' button instead of reply to all. Original Message Subject: Re: [PHP] mysql adapter and DAL Date: Sat, 17 Sep 2011 19:07:48 +0530 From: Nilesh Govindarajan cont...@nileshgr.com To: shahrzad khorrami shahrzad.khorr...@gmail.com On Sat 17 Sep 2011

Re: [PHP] Round with money_format

2011-09-17 Thread Tedd Sperling
On Sep 17, 2011, at 10:56 AM, Bill Guion wrote: On Sep 17, 2011, at 3:46 AM, Cyril Lopez wrote: Can someone help me understand how money_format() rounds numbers ? As someone else pointed out, rounding rules vary by locale, but I was taught 40+ years ago in graduate school programming

Re: Re: [PHP] Round with money_format

2011-09-17 Thread Richard Quadling
On 17 September 2011 15:56, Bill Guion bgu...@comcast.net wrote: On Sep 17, 2011, at 3:46 AM, Cyril Lopez wrote: From: Cyril Lopez cy...@nethik.fr Date: September 16, 2011 10:58:28 AM EDT To: php-general@lists.php.net Subject: Round with money_format Hi, Can someone help me understand

Re: Re: [PHP] mysql adapter and DAL

2011-09-17 Thread shahrzad khorrami
mysqli - it's what I wanted. thanks