I tested your class and found it simple to use and very efficient on my script wich is relying on recursive queries. However, I think one important feature is missing : refreshing the cache on update...
Tejas Soni - 2013-12-19 21:46:13 - In reply to message 1 from olivier percebois
hello how to use it on mysql query ??
my mysql code is
echo "<h2>Latest Updates</h2>";
$sql = mysql_query("SELECT * FROM new ORDER BY date DESC LIMIT 9");
while($list = mysql_fetch_array($sql))
{
echo "<div class=\"updateRow\">$list[1]</div>";
}
now how to use mysql query cache on this example code ??