Re: [PHP] 大客户营销策略与区域市场开发

2010-01-21 Thread Bipper Goes!
OP: Watch your mouth. 2010/1/21 Kaya Saman > Marc Hall wrote: > >> >> >> From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk] Sent: Thursday, >> January 21, 2010 11:18 AM >> To: Marc Hall >> Cc: 'sssumjeg'; php-general@lists.php.net >> Subject: RE: [PHP] 大客户营销策略与区域市场开发 >> >> >> On Thu, 2010-

Re: [PHP] POLL: To add the final ?> or not...

2010-01-14 Thread Bipper Goes!
Wait, Kim, whats your last name? On Thu, Jan 14, 2010 at 5:04 PM, Kim Madsen wrote: > Ashley Sheridan wrote on 14/01/2010 23:36: > > > What has been said on this thread a few times is it is not always a >> developer error, but a bug with the editor, which is not something that will >> be picked

Re: [PHP] POLL: To add the final ?> or not...

2010-01-13 Thread Bipper Goes!
You could also sit on the egg. On Tue, Jan 12, 2010 at 3:41 PM, tedd wrote: > At 3:49 PM -0500 1/12/10, Robert Cummings wrote: > >> tedd wrote: >> >>> At 5:24 PM + 1/12/10, Ashley Sheridan wrote: >>> On Tue, 2010-01-12 at 12:22 -0500, Robert Cummings wrote: >>> >>> -- egg snip-its

Re: [PHP] POLL: To add the final ?> or not...

2010-01-11 Thread Bipper Goes!
Ever write a string replace function on a closing ?> //somecomment here like end junk I have written some systems and gone back two to three years later and found myself having to do such. Sloppy, sure. Minimize cost to the client? Oh yeah. I keep em, and comment 'em as I feel I should. On Mo

Re: [PHP] If design patterns are not supposed to produce reusable code then why use them?

2010-01-05 Thread Bipper Goes!
A pattern is simply a device used to skip out on costly dollars (as opposed to cheap dollars). Software development is a low loyalties field. When new workers come in and old ones are laid off, or when the project is complete and you will likely not be working on the project again in the future,

Re: [PHP] Re: Happy New Year

2009-12-31 Thread Bipper Goes!
"As long as we all don't exit prematurely. ;-P" They always hate that. On Thu, Dec 31, 2009 at 12:29 PM, Bastien Koert wrote: > On Thu, Dec 31, 2009 at 1:20 PM, Carlos Medina > wrote: > > tedd schrieb: > >> > >> Hi gang: > >> > >> Happy New Year! > >> > >> May 2010 > 2009. > >> > >> Cheers, >

Re: [PHP] Happy New Year All!

2009-12-31 Thread Bipper Goes!
On Thu, Dec 31, 2009 at 10:52 AM, Robert Cummings wrote: > > > Paul Scott wrote: > >> Bipper Goes! wrote: >> >>> return ThankYou; >>> >>> >>> Oh god I think I blowed it up. >>> >> >> I prefer: >> >>

Re: [PHP] Happy New Year All!

2009-12-31 Thread Bipper Goes!
return ThankYou; Oh god I think I blowed it up. :) -Bip On Thu, Dec 31, 2009 at 1:11 AM, paragasu wrote: > > /** this going to be a long wish from Malaysia > * @author paragasu > */ > > do { echo 'wish you .. \n'; } (date('Y') < 2010) ; > exit (' Happy New Year'); > > > ?> > > -- > PHP G

Re: [PHP] MySQL Increment/Decrement

2009-12-28 Thread Bipper Goes!
UPDATE SQLTABLE SET count = (count+1) WHERE PromoID=1 Is this valid for your issue? I have no way of testing or toying On Mon, Dec 28, 2009 at 8:54 PM, Ben Miller wrote: > I hope this isn't a bone-head question - Is there a MySQL query that will > increment/decrement the value in an integer co