Re: [nyphp-talk] Dynamic Form Elements

2008-02-12 Thread Edward Potter
JQUERY! It does everything, EVERY php coder should be looking at it. :-) ed On Feb 1, 2008 3:05 AM, Michael B Allen <[EMAIL PROTECTED]> wrote: > I'm familiar with DOM, DHTML, JavaScript, etc but I'm not sure what > the best way to do dynamic forms is. > > Basically I just want to dynamically i

[nyphp-talk] OT -Registration Open for GoRuCo 2008-

2008-02-12 Thread Halter, Shari
Registration is now open for Gotham Ruby Conference [GoRuCo] 2008, a one-day, single-track technical conference, aimed at highly motivated programmers, in New York City and dedicated to everything Ruby. The conference will be held on Saturday, April 26th at the Manhattan campus of Pace Univ

Re: [nyphp-talk] Dynamic Form Elements

2008-02-12 Thread Daniel Convissor
Peter: > while it was google that non-standardly JS'd, ajaxed, custom API'd > and gadgeted their way to monster acceptance First, Google works just fine for folks with JavaScript turned off. Second, the search engine and advertising prowess has more to do with their success than their JavaScri

Re: [nyphp-talk] Favorite js tooltip?

2008-02-12 Thread Ajai Khattri
On Tue, 12 Feb 2008, @ndrés wrote: > I personally prefer css-tooltips over js tool tips. They are lighter,faster > and almost as cool How about? http://trentrichardson.com/examples/csstooltips/ -- Aj. ___ New York PHP Community Talk Mailing List ht

Re: [nyphp-talk] Favorite js tooltip?

2008-02-12 Thread Cliff Hirsch
On Feb 11, 2008 9:43 PM, Edward Potter <[EMAIL PROTECTED]> wrote: >> I think jquery pretty much took over in the JS world (IMHO), just >> google that with tool tips, you'll find lots of examples. >> >> :-) ed On 2/12/08 4:39 PM, "@ndrés" <[EMAIL PROTECTED]> wrote: > I personally prefer css-tool

Re: [nyphp-talk] Favorite js tooltip?

2008-02-12 Thread @ndrés
I personally prefer css-tooltips over js tool tips. They are lighter,faster and almost as cool On Feb 11, 2008 9:43 PM, Edward Potter <[EMAIL PROTECTED]> wrote: > I think jquery pretty much took over in the JS world (IMHO), just > google that with tool tips, you'll find lots of examples. > > :-)

Re: [nyphp-talk] Addcslashes bug

2008-02-12 Thread Matteo Rinaudo
> addcslashes failed to put a slash in front of a single quote. Can anyone > imagine how this could happen? Is it possible it didn't catch a multi-byte > character? Am I back to charset issues? I would guess: was the single quote something different than the standard single quote, like a very simi

Re: [nyphp-talk] Addcslashes bug

2008-02-12 Thread Rob Marscher
Cliff Hirsch wrote: I had a very strange error, catastrophic yesterday. PEAR Config writes a PHP array file like so: 'value', param2 => 'val'ue2', ... ); The writing process is what failed to generate the backslash. The parsing happens on subsequent page loads. The strange thing is that I

Re: [nyphp-talk] Joomla Site Home Page Loading Slowly

2008-02-12 Thread Randal Rust
On Tue, Feb 12, 2008 at 11:40 AM, Mitch Pirtle <[EMAIL PROTECTED]> wrote: > As for your front page issues, you need to take a look at what modules > are included on the front page only of the site. And that's what it turned out to be. The site was using the zweather module. As soon as I turned

Re: [nyphp-talk] Joomla Site Home Page Loading Slowly

2008-02-12 Thread Mitch Pirtle
On Feb 10, 2008 8:20 AM, Randal Rust <[EMAIL PROTECTED]> wrote: > > This morning, I noticed something very strange. The only page that > seems to be loading slowly is the home page. If I type the URL of > another page into the address bar, it will load with no problem at > all. > > This is a Joomla

Re: [nyphp-talk] SoapClient - Worthless?

2008-02-12 Thread Hans Kaspersetz
As it ends up, though, I've ended up eating these words, thanks to our friends over at MySQL. Through much debugging, I finally discovered that any socket connection to a https:// URL would cause the segfault - even something as simple as file_get_contents(). Though not well described across

Re: [nyphp-talk] Addcslashes bug

2008-02-12 Thread Cliff Hirsch
> On Tue, Feb 12, 2008 at 07:15:37AM -0500, Cliff Hirsch wrote: >> PEAR Config writes a PHP array file like so: > > Your earlier description of the error coming up out of the blue makes it > sound like you're writing out configuration files on the fly. Is that > the case? If so, why? If not, pl

Re: [nyphp-talk] Addcslashes bug

2008-02-12 Thread Daniel Convissor
Cliff: On Tue, Feb 12, 2008 at 07:15:37AM -0500, Cliff Hirsch wrote: > > PEAR Config writes a PHP array file like so: Your earlier description of the error coming up out of the blue makes it sound like you're writing out configuration files on the fly. Is that the case? If so, why? If not,

Re: [nyphp-talk] Addcslashes bug

2008-02-12 Thread Cliff Hirsch
> This doesn't make sense. How would a slashing failure lead to a parse > error? Parsing should always happen first. Were you hacked? Are you > sure it isn't an unsafe include? No eval() in the code. PEAR Config writes a PHP array file like so: 'value', param2 => 'val'ue2', ... ); The