function table_exists($tblName) { global $DB_site; $check = $DB_site->query_first("CHECK TABLE $tblName"); if (!strstr($check['Msg_text'], 'exist')) { return true; } else { return false; } }