Jump to content
Fórum Script Brasil
  • 0

Mysql


laurinha2004

Question

6 answers to this question

Recommended Posts

  • 0

Mas se aprende !!

O script a seguir le um arquivo e coloca seu conteúdo em uma string !

Depois é só salvar no MySQL !

<?php

$arquivo = "teste.html";

$array_arquivo = file($arquivo);

$string_arquivo = join("\n\r", $array_arquivo);

include "conexao.php"; //inclui o arquivo de conexao com o BD !

$query = "INSERT INTO tabela (nome_arquivo, con_arquivo) VALUES ($arquivo, $string_arquivo)";

$resultado = mysql_query($query);

if (!$resultado) {

echo "Erro !!!";

}

?>

Isso é para um arquivo !!!

Se quiser para mais, no automático é só falar !!!

Link to comment
Share on other sites

  • 0

hummmmmm...

Entaum faz assim:

<?php

$pasta = "/pasta"; //A pasta que estão os arquivos !!

if ($handle = opendir($pasta)) {

  while (false !== ($file = readdir($handle))) {

      $arquivo = $file;

      $array_arquivo = file($arquivo);

      $string_arquivo = join("\n\r", $array_arquivo);

      include "conexao.php"; //inclui o arquivo de conexao com o BD !

      $query = "INSERT INTO tabela (nome_arquivo, con_arquivo) VALUES ($arquivo, $string_arquivo)";

      $resultado = mysql_query($query);

      if (!$resultado) {

      echo "Erro !!!";

      }

}

closedir($handle);

}

?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...