On 11/7/07, Josh Meyer <[EMAIL PROTECTED]> wrote:
$memcache->set($memcache_key,mysqli_fetch_assoc($result),TRUE,86400)
or die ("Failed to
> save data at the server");> Should I massage $result into something else before sticking it into > $memcache->set()? yeah, you need to convert it to an array or object first, you can't use a resource type for that.
