Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
"CREATE TEMPORARY TABLE t AS SELECT DISTINCT * FROM `".$list."`;
TRUNCATE `".$list."`;
INSERT `".$list."` SELECT * FROM t;"
$query_dedup1 = "CREATE TEMPORARY TABLE t AS SELECT DISTINCT * FROM `".$list."`;";
$dedup1_res = mysql_query($query_dedup1) or die(mysql_error());
$query_dedup2 = "TRUNCATE `".$list."`;";
$dedup2_res = mysql_query($query_dedup2) or die(mysql_error());
$query_dedup3 = "INSERT `".$list."` SELECT * FROM t;";
$dedup3_res = mysql_query($query_dedup3) or die(mysql_error());
$query_optimize = "OPTIMIZE TABLE `".$list."`;";
$optimize_res = mysql_query($query_optimize) or die(mysql_error());