Fixing MySQL Tables
How to fix MySQL tables.
log into mysql -u <username> -p
use <database>;
show tables;
repair table <table name>;
repeat for all damaged tables.
log into mysql -u <username> -p
use <database>;
show tables;
repair table <table name>;
repeat for all damaged tables.