Here's a bit of a mistery:
I'm using mysqldump --opt -p dbname > dump.sql and I get the problem when trying to import records back to database. I was getting some stupid mysql error report, but finally, parsing the .sql, I found that 	 character is causing the problem. I am not sure what this character stands for, but I believe it is tab character. When I replace all occurances of it with empty spaces, everything goes well.
Q: Why phpmyadmin won't import records in database when this character is present?
SubQ: Is my mysqldump sintax wrong, meaning is there some switch which can do something intelligent with 	?
Bye!
Dado