Hi guys,
here is what I have:
an excel sheet (XLS, 4MB) with postal codes in the first column
more data in the other columns
here is what I need:
looking for the postal code in the excel sheet
get the information to this postal code from the other columns
work with the other information (use them as variables)
example:
PC | A | B | C
1234 | 2.3 | 3.5 | 1.1
2345 | 3.3 | 3.3 | 7.8
---> If I have the postal code 2345, I want to create the variables $a=3.3 ; $b=3.3 ; c=7.8 in PHP
here i