Advertisement
Guest User

Untitled

a guest
May 11th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php
  2. $host = "localhost";
  3. $user = "bolinha";
  4. $password = "";
  5. $db = "REMIX";
  6. $tabela = "TESTE";
  7.  
  8. $conexao = mysql_connect($host, $user, $password) or die(mysql_error());
  9. $banco = mysql_select_db($db) or die(mysql_error());
  10.  
  11. $arquivo = 'arquivo/teste.txt';
  12. $arq = fopen($arquivo,'r');
  13.  
  14. while(!feof($arq))
  15. $linha[] = fgets($arq); // cria um array com o conteudo do arquivo
  16.  
  17. $sql = "INSERT INTO '$tabela' (TESTE1, TESTE2, TESTE3) VALUES ('$linha[0]', '$linha[1]', '$linha[2]')";
  18. $result = mysql_query($sql) or die(mysql_error());
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement