> Hey Nuno,
>
> You're using sqlite_array_query() where you could just use
> sqlite_single_query():
Done.
> What exactly was the problem that you fixed in make_function_link, and
> how did you fix it?
make_function_link was a big confusion and slow. I've cleaned it up and I'm
using just a DB qu
Hey Nuno,
You're using sqlite_array_query() where you could just use
sqlite_single_query():
$value = sqlite_single_query($GLOBALS['fb_idx'], "select value from ents
where entid=");
...
$entities['&' . $ent . ';'] = $value;
What exactly was the problem that you fixed in make_function_link, a