I need to go through a CSV file to capture a value and print it on the screen.
Example:
Column "N" line "2", in this case, it is cell N2 which is written: 2.98
How to print this N2 cell on the screen? How to get there?
<?php$h=fopen("produtividade do trabalho.csv","r");
$i = fgetcsv($h, null, ",");
foreach ($i as $indice => $valor) {
echo var_dump($i);
}
?>
In the above code it prints this to me:
array(1) { [0]=> string(278) "trabalho;"Código do projeto";"Código do item";"Data de início do trabalho real";"Data final do trabalho real";"Nome da linha";"Desempenho";"Disponibilidade";"Eficiência da linha";"Unidades produzidas";"Unidades previstas";"Unidade de medida";"Unidades padrão por hora";"Duração"" }
Which in this case is all that is on line 1.