There is an import utility shipped with Oracle : SQL*Loader. You can launch it from PHP with a command like this :
system("sqlldr userid=$login/$pwd control=$ctlfile");
The control file contains all the information needed, such as the name and the format of the file to import. You'll have to read the Oracle documentation to know all the details.
Bon courage ;-)