Well, one easy way would be to take your Excel file and save it as a CSV file (comma separated values). That way, each line would represent one row, and each comma would separate two variables.
You can then take in all that data, even through PHP, and using the explode command or similar you can cut out individual variables and save them to your db or whatever you need.