-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimagen.php
32 lines (29 loc) · 986 Bytes
/
imagen.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
<?php
session_start();
date_default_timezone_set('America/Mexico_City');
$conecta = mysqli_connect('localhost', 'skyper', 'ctpalm2113', 'rescatar');
if(!$conecta){
die('no pudo conectarse:' . mysqli_connect_error());
}
if (!mysqli_set_charset($conecta,'utf8')) {
die('No pudo conectarse: ' . mysqli_error($conecta));
}
$idImagen = $_SESSION['rpe'];
$resultado = mysqli_query($conecta, "SELECT imagen FROM imagenes WHERE idImagen = '$idImagen'");
if ($resultado) {
$fila = mysqli_fetch_assoc($resultado);
$foto = $fila['imagen'];
if ($foto) {
// https://www.php.net/manual/en/function.imagejpeg.php
// https://www.superprof.es/blog/tecnica-codigo-foto-programacion/
// https://www.php.net/manual/es/function.header.php
header("Content-Type: image/jpeg");
echo $foto;
} else {
echo "No se encontro la imagen.";
}
} else {
echo "error chavo" . mysqli_error($conecta);
}
mysqli_close($conecta);
?>