CLEAR - $tb
".$lang["tables"].">$tb>".$lang["Clear"]."";
if (!$vmi)
{
echo "
- - -
- This will delete all records !
".$lang["TRUNCATE_TABLE"]." ".htmlspecialchars($tb)." ?
".$lang["Yes"]." | ".$lang["No"].""; } else {
$sql="TRUNCATE TABLE `$tb`";
$d=mysqli_query($conn,$sql);
if ($d) {
echo "
- - -
Table $tb cleared !"; } else {
echo "
- - -
".$lang["Error"].": "; echo mysqli_error($conn); } } echo ""; include('foot.php'); ?>