SQL Repair

when in phpmyadmin go to the table you think is corrupted / broken.

when phpmyadmin says it can't access the table you need to login to the command line:

mysql -u username -p
then hit enter, and type your pwd.
then type: use databasename;
and then REPAIR TABLE tablename;

Hope this is what you mean...

- Mike
 
Back
Top