Re: [nyphp-talk] calculating state taxes?

2008-08-13 Thread Warren Myers
ling List > http://lists.nyphp.org/mailman/listinfo/talk > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > -- Warren Myers http://warrenmyers.com ___

Re: [nyphp-talk] VMWare

2007-10-24 Thread Warren Myers
What kind of hardware will you be running on? I presume you're talking about ESX INfrastructure, and not VMware Server, yes? What hosted OS do you want to use? WMM On 10/24/07, Pete Czech - New Possibilities Group, LLC <[EMAIL PROTECTED]> wrote: > > This is a little bit off topic, but I'm wonder

Re: [nyphp-talk] When to close a mysql connection

2007-07-01 Thread Warren Myers
It should also be noted that connections will automatically timeout, so you don't technically need to close it (though it's a Good Idea (tm)). With pconnect, PHP *should* reopen the connection if it's timed-out on MySQL's end. WMM On 7/1/07, Jakob Buchgraber <[EMAIL PROTECTED]> wrote: > I am i

Re: [nyphp-talk] And the HTML CSS guru is....

2007-01-11 Thread Warren Myers
I pretty much just use text email. The HTML formatting is nice for some things, but most of what I write looks fine whether it's pure text or also HTML. My big reason for avoiding tables when at all possible is that I like changing layouts on personal (and even some work) sites semi-frequently. E

Re: [nyphp-talk] rtrim broken?

2006-11-02 Thread Warren Myers
I don't think this does what it looks likeOn 11/1/06, David Krings <[EMAIL PROTECTED]> wrote: Hi,yes, $text is the string passed to rtrim, which in retrun issupposed to overwrite what is in $text previously. Kinda like$k = $k++;$k++ will make k increase by 1. $k=$k++ still only increases $k by