Blz Galera
I'm doing an image upload test and the error is appearing:
Notice: Undefined index: photo in C: \ xampp \ htdocs \ cadastro.php on line 2
Notice: Undefined index: photo in C: \ xampp \ htdocs \ cadastro.php on line 3
What's wrong? Thanks in advance.
Obs. The script in index.php is because I have more than one button in the form.
index.php
<form id="cadastro" name="cadastro" method="post">
<input type="file" name="foto" />
<input type="button" value="Cadastrar" onClick="ExecutaAcao('cadastro');">
</form>
<script>
function ExecutaAcao(valor){
document.cadastro.action = valor + '.php';
document.cadastro.submit();
}
</script>
cadastro.php
<?php
$imagem = $_FILES['foto']['name'];
$tmp_name = $_FILES['foto']['tmp_name'];
$location = "imagens/$imagem";
move_uploaded_file($tmp_name,$location);
?>