Se você tiver o seguinte erro ou semelhante em seu sistema ou ao importar tabelas no PHPMyAdmin:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘TYPE=MyISAM CHARACTER SET `utf8` COLLATE `utf8_general_ci`’ at line 29

Isto é causado devido a função “TYPE=MyISAM” ser descontinuado na versão 5.5 do MySQL.
A solução é muito simples, procure no arquivo .sql todas as entradas contendo TYPE=MyISAM e altere para ENGINE=MyISAM

Não se esqueça de remover todas as tabelas que por ventura foram importadas, e tente importar novamente.

Saiba mais sobre MySQL clicando aqui.