There is not way to do that from phpmyadmin from what I know, you can do it however from the scripts, this will allow you to create a cronjob in linux or a schedueled task in Windows to import the CSV into your database. phpMyAdmin runs a command like this anyway.
The SQL command you are looking for is
load data ' . LOCAL_DATA . '
infile "/path_on_disk/file.csv"
into table `table_name` ' . $details['import_options'] . '
(brand, sku, name, retail_price, url, image, short_category, stock_availability, freight_cost, retail_price, currency);');
LOCAL_DATA - can either be empty or the string "LOCAL". Test to see how it runs for you, for my computer I need LOCAL, for the server I do not.
$details['import_options'] - can be a number of things, again the best way to do it is to test to see how it runs for your file. I have used in the past
fields terminated by "," lines terminated by "\n" IGNORE 1 LINES
or
fields terminated by "\t" enclosed by "\"" lines terminated by "\n" IGNORE 1 LINES
or
fields terminated by "," optionally enclosed by "\"" lines terminated by "\n" IGNORE 1 LINES
you can run this in php to get the file you want in the table you want.