Good companions, I have a problem in my code and I can not fix it ...
I'm trying to upload files and download them with php, the problem is that when I give it to download it leaves the page blank and does not download anything ..
this is my code when uploading the file:
And that is my code to download the file:
include('conexion.php');
$id = $_GET['id'];
$qry = "SELECT tipo, contenido, archivo FROM archivos WHERE idarchivos=".$id."";
$res = mysqli_query($link, $qry);
$tipo = mysql_result($res, 0, "tipo");
$contenido = mysql_result($res, 0, "contenido");
$nombre = mysql_result($res, 0, "archivo");
header("Content-disposition: attachment; filename=".$nombre."");
header("Content-type: ".$tipo."");
echo $contenido;