Jump to content
Fórum Script Brasil
  • 0

Upload Em Php


Guest fabioviana

Question

Guest fabioviana

fiz este codigo em php para fazer upload mas não ta funcionando.

parece que o conteudo de filename esta vazio. já configurei o register global e quando consulto o conteudo de $filename tem valor mas $filename_name esta vazio.

tentei usar $_FILES e $HTTP_POST_FILES mas ao funciona, ta vazio.

o que será?

<?

if(empty($filename)) {
?>

<form method="POST" action="imagem.php">
Imagem: <input type="file" name="filename"><br>
<input type="submit" value="Enviar">
</form>

<?
} else{

      if (copy($filename_tmp_name, './imagem/'.$filename_name)){
            echo "<BR>Ok!";
      } else {
            echo "<BR>não foi possivel enviar a imagem!";
      }
}
?>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Um coisinha essencial pro seu script funcionar é essa: ENCTYPE="MULTIPART/FORM-DATA

<form method="POST" action="imagem.php" ENCTYPE="MULTIPART/FORM-DATA">

se não colocar ele nun faz upload e fezendo com files fica muito melhor

<?

if(!($_FILES[filename][tmp_name])) {

?>

<form method="POST" action="imagem.php" ENCTYPE="MULTIPART/FORM-DATA>

Imagem: <input type="file" name="filename"><br>

<input type="submit" value="Enviar">

</form>

<?

} else{

if (copy($_FILES[filename][tmp_name], './imagem/'.$_FILES[filename][name])){

echo "<BR>Ok!";

} else {

echo "<BR>não foi possivel enviar a imagem!";

}

}

?>

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
      651.8k
×
×
  • Create New...