I am trying to import data from xls file,And for this i am using "spreadsheet library" and i am getting data successfully in following format (array)
[0] => Array
(
[0] => ABC
[1] => XYZ
...
)
[1] => Array
(
[1] => ADW
)
...
Now i want to save "Cell" value into database,For example in "xls" file, "ABC" position is "A1" And "XYZ" is "B1",So "ADW" position is "A2",So how can i get "Cell Position" using Php ?