... or better yet, for zc156 and later, just 'disable' the countries:
UPDATE countries SET status = 0 WHERE countries_id != 223;
or
UPDATE countries SET status = 0 WHERE countries_name != 'United States';
To disable all countries but the USA.
... or better yet, for zc156 and later, just 'disable' the countries:
UPDATE countries SET status = 0 WHERE countries_id != 223;
or
UPDATE countries SET status = 0 WHERE countries_name != 'United States';
To disable all countries but the USA.
Bookmarks