I was able to resolve the problem by useing the following code. There are still a few errors because ',' were used in the excel spreadsheet and were exported with it so some things are in the wrong areas but it's a little bit better then having to re enter all of the information I supose.
Anyways here's the code:
LOAD DATA LOCAL INFILE 'file_name.txt' INTO TABLE tbl_name FIELDS TERMINATED BY ',' LINES TERMINATED BY '\r';
I still wish there would of been a way to be able to import all of the information with out having to worry about any damaged records. Any suggestions anyone has I would appreciate.