2
Hello, I’m trying to get the data from a file. CSV with php, but when using the input file to get the . csv is not loading
html code
<form id="form" name="form" action="add_analise.php" enctype="multipart/form-data" method="POST">
<input name="file" id="file" type="file" />
<input type="submit" value="Ver Analise" />
</form>
Php code
<?php
error_reporting(E_ALL & ~ E_NOTICE);
include("config/config.php");
header("Content-Type: text/html; charset=ISO-8859-1",true);
// Abre o Arquvio no Modo r (para leitura)
$arquivo = $_FILES['file']['tmp_name'];
$arquivo = fopen ($arquivo, 'r');
// Lê o conteúdo do arquivo
while(!feof($arquivo)){
// Pega os dados da linha
$linha = fgets($arquivo, 1024);
// Divide as Informações das celular para poder salvar
$dados = explode(';', $linha);
echo $dados[0]."<br>";
// Verifica se o Dados Não é o cabeçalho ou não esta em branco
if($dados[0] != 'Date' && !empty($linha)){
//mysql_query('INSERT INTO emails (nome, email) VALUES ("'.$dados[0].'", "'.$dados[1].'")');
}
}
// Fecha arquivo aberto
fclose($arquivo);
the file. CSV is not loading at all, after clicking the send button, the page is loading, loading and nothing happens, the file is only 10k/b
Please avoid long discussions in the comments; your talk was moved to the chat
– Maniero