-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathatualizar_foto.php
88 lines (62 loc) · 2.71 KB
/
atualizar_foto.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link href="CSS.css" rel = "stylesheet" style = "text/css">
<title>Controle de Fluxo</title>
</head>
<body>
<div align="center">
<fieldset>
<table class = "menu" >
<tr> <!--botões de navegação-->
<td><p align = "center"><a href = "index.php">Home</a></p></td>
<td><p align = "center"><a href="visita.php" >Visita</a></p></td>
<td><p align = "center"><a href = "cadastro.php">Cadastro</a></p></td>
<td><p align = "center"><a href="consulta.php">Consulta</a></p></td>
<td><p align = "center"><a href = "relatorio.php">Relatório</a></p></td>
<td><p align = "center"><a href = "atualizar.php">Atualizar</a></p></td>
</tr>
</table>
<br>
<img src="IMG/Logo.png"/>
<br>
<p><h2><i>Atualizado!</i></h2></p>
<?php
$documento =($_POST['rg']);
$imagem = $_FILES['input']['tmp_name'];
$imgSize = $_FILES['input']['size'];
$imgError =$_FILES['input']['error'];
$imgType =$_FILES['input']['type'];
$imgNoma =$_FILES['input']['name'];
if ($imagem !="none"){
$fp =fopen($imagem,"rb");
$conteudo =fread($fp,$imgSize);
$conteudo =addslashes($conteudo);
fclose($fp);
}
$strcon =mysqli_connect('localhost:3307','root','usbw','mydb') or die(' Erro ao conectar com o Banco de Dados');
$str = "UPDATE cadastros SET Foto ='$conteudo' WHERE RG ='$documento' ";
$resultado = mysqli_query($strcon, $str) or die("Erro ao tentar Atualizar foto");
$consulta = "SELECT RG, nome, sobrenome, empresa FROM cadastros WHERE RG='$documento'";
$resultado2=mysqli_query($strcon, $consulta);
echo "<br><br>";
while($linha = mysqli_fetch_row($resultado2) ){
$sql ="SELECT Foto FROM cadastros WHERE RG='$documento'";
$resultado3 = mysqli_query($strcon, $sql);
$sth = $strcon->query($sql);
$result=mysqli_fetch_array($sth) or die ("Cadastro não localizado") ;
echo '<img src="data:image/jpeg;base64,'.base64_encode( $result['Foto'] ).'" width="250px" height="250px" alt="Imagem não localizada"/>';
echo "<p><tr><td> RG: ". $linha[0] . "</td><td> Nome: " . $linha[1] . "</td><td> Sobrenome: " . $linha[2] . " </td><td> Empresa: " . $linha[3] . "</td></tr></p></table>";
}
mysqli_free_result($resultado2);
mysqli_close($strcon);
echo "<br>";
echo "<input type='submit' name='submit' value='Fechar' onClick='window.close();'>";
?>
</fieldset>
<p><h6><i>Desenvolvido por:</i></h6></p>
<p><h6><i>Gabriel Ferreira dos Santos ©</i></h6></p>
</div>
</body>
</html>