lordcyber Posted December 3, 2011 Report Share Posted December 3, 2011 Estou começando agora em php e estou tentando fazer um sistema que faz um upload de um arquivo txt, e depois insira os dados desse txtem uma tabelaex:matricula nome cargotabelamatricula nome cargo os dados do txt deve ser gravado cada qual em sua coluna matricula em matricula e assim por diantedesde já agradeço. Quote Link to comment Share on other sites More sharing options...
0 Evanjos Posted December 3, 2011 Report Share Posted December 3, 2011 como esta o formato do txt? separado por ponto e virgula? Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted December 3, 2011 Report Share Posted December 3, 2011 Onde está seu código?Um abraço. Quote Link to comment Share on other sites More sharing options...
0 lordcyber Posted December 3, 2011 Author Report Share Posted December 3, 2011 Onde está seu código?Um abraço.Segue o php<?phprequire 'conxao.php'; $arquivo = "funcionarios.txt"; $fp = fopen($arquivo,'r'); while ( ($linha = fgets($fp))) { // Insere matricula $matricula = $linha[0]. $linha[1]. $linha[2]. $linha[3]. $linha[4]. $linha[5]. $linha[6]. $linha[7]. $linha[8]; //insere nome $nome = $linha[9].$linha[10].$linha[11].$linha[12].$linha[13].$linha[14].$linha[15].$linha[16]. $linha[17].$linha[18].$linha[19].$linha[20].$linha[21].$linha[22].$linha[23].$linha[29].$linha[30]; $sql_grava = mysql_query("insert into colaborador(matricula_func, nome_func, funcao_func) values ('$matricula','$nome','$reg')"); echo $matricula, $nome."<br>"; //', '".$linha[]."','".$linha[]."}?>segue o txt12000045 PAULO JOSE DOS SANTOS Informatica12000046 JULIANA BERNARDINO Informatica12000047 RODRIGO LOPES Informatica12000048 ADALBERTO JUNIOR LOPES Informatica Quote Link to comment Share on other sites More sharing options...
0 lordcyber Posted December 3, 2011 Author Report Share Posted December 3, 2011 12000045 PAULO JOSE DOS SANTOS Informatica12000046 JULIANA BERNARDINO Informatica12000047 RODRIGO LOPES Informatica12000048 ADALBERTO JUNIOR LOPES Informatica<?phprequire 'conxao.php'; $arquivo = "funcionarios.txt"; $fp = fopen($arquivo,'r'); while ( ($linha = fgets($fp))) { // Insere matricula $matricula = $linha[0]. $linha[1]. $linha[2]. $linha[3]. $linha[4]. $linha[5]. $linha[6]. $linha[7]. $linha[8]; //insere nome $nome = $linha[9].$linha[10].$linha[11].$linha[12].$linha[13].$linha[14].$linha[15].$linha[16]. $linha[17].$linha[18].$linha[19].$linha[20].$linha[21].$linha[22].$linha[23].$linha[29].$linha[30]; $sql_grava = mysql_query("insert into colaborador(matricula_func, nome_func, funcao_func) values ('$matricula','$nome','$reg')"); echo $matricula, $nome."<br>"; //', '".$linha[]."','".$linha[]."}?> Quote Link to comment Share on other sites More sharing options...
Question
lordcyber
Estou começando agora em php e estou tentando fazer um sistema
que faz um upload de um arquivo txt, e depois insira os dados desse txt
em uma tabela
ex:
matricula nome cargo
tabela
matricula nome cargo
os dados do txt deve ser gravado cada qual em sua coluna matricula em matricula e assim por diante
desde já agradeço.
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.