Talk to people, good morning, with a simple problem but boring, I have a form that is sent some information and images, and this form is editable, the information is changed perfectly, I am having problem with the image, so it seems it is changing, but only in the database, the directory folder is empty, can you display the image without being in the directory? because when it is sent the form for the first time is all right the image is displayed without errors, but when I change it does not go to the directory. If anyone can give a help thank you from jáaa, VLWWW
salva_ed.php
<?php
//inicia conexão com o banco
include ("conexao.php");
$new_name = "";
// recebe o codigo do registro
$iden = isset($_POST['iden'])?$_POST['iden']:"";
$iden = $_POST ['codigo'];
$arquivo = isset($_FILES['arquivo'])?$_FILES['arquivo']:"";
$arquivo = $_FILES ['arquivo'];
// aqui seria onde ele veifica se existe algo no campo arquivo e o substitui por um valor em branco
if($arquivo == ""){
$query =("update eqp set arquivo = '' WHERE codigo='$iden'");
}else{
// aqui seria onde fazia o update da imagem, dando um novo nome e movendo para a pasta de upload
if(isset($_FILES['imagem']))
{
$sql = mysqli_query("SELECT * FROM eqp WHERE codigo = '$iden' ");
$escrever=mysql_fetch_array($sql);
date_default_timezone_set("Brazil/East"); //Definindo timezone padrão
$ext = strtolower(substr($_FILES['imagem']['name'],-4)); //Pegando extensão do arquivo
$new_name = $resultado['foto']; //Definindo um novo nome para o arquivo
$dir ='uploads/'; //Diretório para uploads
move_uploaded_file($_FILES['imagem']['tmp_name'], $dir.$new_name); //Fazer upload do arquivo
}
$new_name = $_FILES['arquivo']["name"];
$imagem = $new_name;
var_dump($imagem);
echo '<pre>';
print_r($imagem);
echo '</pre>';
$query=("UPDATE eqp SET arquivo= '$imagem' WHERE codigo='$iden'");
$result = mysqli_query($conexao,$query);
// Verifica se o comando foi executado com sucesso
if(!$result)
echo "Registro NÃO alterado.";
else
echo "Registro Alterado com sucesso.";
}
?>
final message
string(12) "IMG_6175.JPG"
IMG_6175.JPG
Registro Alterado com sucesso.