I found solution myself. If it will help somebody, send me your "thank you" to victoria.afonina@usa.net 😉))))
So in Access you need to choose the table to export. Then go to file->export table-> as text file->(DO NOT SAVE FORMATTED ! )->save all -> delimeted -> tab as delimeter -> text qualifiyer "none" -> save file at mysql\data\database_name\file_name.txt
In phpMyAdmin in the SQL query window type:
LOAD DATA LOCAL INFILE "C:\mysql\data\database_name\file_name.txt" into table table_name;
Press button GO.
phpMyAdmin will say it cannot show you page. It's OK. Go back, refresh your browser and look at your table - it got records!!!
There is a bug though 🙁((( All dates are entered as 0's.
Maybe somebody else has solution for dates?