|
This is unrelated, but a quick effientcy practice:
Change line:
$new_enough_php = function_exists( "mysql_real_escape_string" );
and add static in front of it
static $new_enough_php = function_exists( "mysql_real_escape_string" );
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|