**How to open, read, transfer all content line by line in database depend upon their specification using php???????
**
I have a txt file that deals with numbers and the delimiter is not present in numbers. But i want to store that huge numbers depend upon there description.
For example :- abc.txt
34012015000220001000631931058620000607262Y22122014 N
34012015000220002000637717660206000607262Y23122014 N
34012015000220003000647245251009000607262Y23122014 N
.
.
.
.
.
.
.
.
.
.
.
.
.
// and so on...
Here is specification is
34 is constant value.
012015000220001-record No.
000631931058620-Aadhar No.
000607262-BIN no.
Y-record status
22122014-date
-one blank space
N-Mapping Status
**Each new line is a new customer with their individual details.
There are huge line present in the text file.that all line which store in the database by using there specification in there specific column in mysql database **
So please sir give me any solution to solve this problem?????