I created a database named Form
and table with the following information
contatos (id int A.I, nome varchar(30), idade int(2), foto(blob)
I made that default form:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<form name="CadastroAlunos" type="text" method="post" enctype="multipart/form-data" action="upload.php">
Nome: <input type="text" name="NomeAluno"></br>
Idade: <input type="text" name="IdadeAluno"></br>
Foto: <input type="file" name="image" /></br>
<input type="submit" value="Enviar" name="envia" />
</form>
</body>
</html>
UPLOAD.PHP
<?php
include_once 'conexao.php';
$nome = $_POST['NomeAluno'];
$idade = $_POST['IdadeAluno'];
$foto = $_FILES['image'];
move_uploaded_file ( string $foto , string $novoDestino );
$sql = "INSERT INTO contatos (nome, idade, foto) values ('$nome', '$idade', $novoDestino");
?>
How do I save the photo along with the information in the form?