There are several ways to do this. A simple way would be to 'export' the data from excel to a formatted file (CSV, tab delimited).
Write a simple routine in PHP to open the file, read in each record (look at the verb 'explode', it can help parsing the data into an inumarated array based on the field delimiters) and insert it into the table.
Cheers,
Cris