Avrei bisogno di una mano rigurdante il download di un img da un db. Ho provato a cercare in un manuale ma non cita lo script php, ho provato anche a cercare con google ma nnt. Sareste cosi gentili da darmi una mano? grazie
Basta che modifichi l'header e stampi il blob, ti ho fatto un esempio
PHP:
if(isset($_GET['id'])){
$query = $mysqli->query('SELECT * FROM tabella WHERE id_img='.(int)$_GET['id']) or die($mysqli->error);
if($query->num_rows>0){
$result = $query->fetch_object();
header('Content-type: image/png');
header("Content-Disposition: attachment; filename='$result->titolo';");
echo $result->img;
}else die('Errore, id invalido o non trovato');
}else die('Errore, id non settato');