I have two tables - alunos(id, nome, email...)
and fotos(id, imagem, id_aluno)
. I need to add an image to each student already created.
I had idea to make a select
that appears all the students and then, selecting, to add the image one by one.
I would like them to help me add the photo using a foreign key.
PS: I'm new to php, but I've already done a method to add the photos, I want to know how to add the photo to the student that appears in the select.
Thank you in advance.
//<?php
$conn = @mysql_connect("localhost", "......", ".......") or die ("Problemas na conexão.");
$db = @mysql_select_db("bancoTeste", $conn) or die ("Problemas na conexão");
ini_set('default_charset','UTF-8');
error_reporting(E_ALL);
ini_set("display_errors", 1);
if($_POST['cadastrar']){
// Recupera os dados dos campos
$foto = $_FILES["foto"];
// Verifica se o arquivo é uma imagem
if(!preg_match("/^image\/(pjpeg|jpeg|png|gif|bmp)$/", $foto["type"])){
$error[1] = "Isso não é uma imagem.";
}
// Se não houver nenhum erro
if (count($error) == 0) {
// Pega extensão da imagem
preg_match("/\.(gif|bmp|png|jpg|jpeg){1}$/i", $foto["name"], $ext);
// Gera um nome único para a imagem
$nome_imagem = md5(uniqid(time())) . "." . $ext[1];
// Caminho de onde ficará a imagem
$caminho_imagem = "fotosMex/" . $nome_imagem;
// Faz o upload da imagem para seu respectivo caminho
move_uploaded_file($foto["tmp_name"], $caminho_imagem);
// Insere os dados no banco
$inserir = mysql_query("SELECT id FROM alunos");
$inserir = mysql_insert_id();
$sql = mysql_query("INSERT INTO fotosTeste VALUES('', '".$nome_imagem."', '".$inserir."')");
// Se os dados forem inseridos com sucesso
if ($sql){
echo "Você foi cadastrado com sucesso.";
}else{
echo "nao enviada";
}
}
// Se houver mensagens de erro, exibe-as
if (count($error) != 0) {
foreach ($error as $erro) {
echo $erro . "<br />";
}
}
}
?>
//<!--<!DOCTYPE html>
// <html lang="pt-br">
//<head>
// <meta charset="utf-8"/>
/ <title>Cadastro</title>
/</head>
/<body>
//<h1>Cadastro de Usuário</h1>
//<form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post" //enctype="multipart/form-data" name="cadastro" >
//<label>Selecione um aluno</label>
//<select name="alunos">
//<option>Alunos</option>
//<?php
//$sql = mysql_query("SELECT * FROM alunos");
//while ($aluno = mysql_fetch_object($sql,MSQL_ASSOC)) { ?>
<option value="<?php $aluno['id'] ?>"
<?php if ($aluno['id'] == $_POST['alunos']) {
echo "selected";
} ?>>
<?php echo $aluno['pess_nome']; ?>
</option>
//<?php } ?>
//</select>
<input type="file" name="foto"/>
<input type="submit" name="cadastrar" value="Cadastrar"/><br/>
</form>
</body>
</html> -->