当我单击链接时,我无法下载图像,只能将其可视化。我的错误是什么?
PHP:
require('conecta.php');
ini_set('display_errors',1); error_reporting(E_ALL);
$cSQL="SELECT ID_PIC, PIC, NOMBRE FROM FOTOS";
$stmt=$oConni->prepare($cSQL) or die($oConni->error);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($id, $pic, $nombre);
//$i=0;
echo '<table cellspacing="0">';
while ($stmt->fetch()) {
if (!empty($pic)){
echo'<tr><td><img class="sifoto" src="images.php? id='.$id.'" width="100" height="100" /></td></tr>';
}
echo'<tr><td value='.$id.'><a href='.$nombre.'>DOWNLOAD</a></td></tr>';
//$i++;
}
$stmt->close();
echo'</table>';
?>