$f = "google.jpg";
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=".$f);
$fp=fopen($f, "r");
fpassthru($fp);
Este es el error que consigo:
Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\respuesta.php:9) in C:\xampp\htdocs\respuesta.php
Nose por que pasa eso, les agradeceria mucho si me pudieran ayudar.