Archive for the ‘Uncategorized’ Category

Test if a javascript function has been defined before calling it

on Thursday 16th April, 2009 Gabe speculated thusly…
if (typeof yourFunctionName == 'function')
{
    yourFunctionName();
}

Posted in Uncategorized

No Comments »

Starting with Symfony – Internal Server Error

on Tuesday 13th January, 2009 Gabe speculated thusly…

You will get an internal server error unless you set:
magic_quotes_gpc = Off
in your php.ini file.

Posted in Frameworks, Programming, Uncategorized

No Comments »