Buenas hermano tengo 200 fotos en una web y en cada una de ella tiene un boton la cual esta de esta forma:
$path="fotos/";
$dir_handle = opendir($path) or die("Unable to open $path");
$i = 1;
echo "<table style=\"width:60%;\" aling=\"center\">";
while($file = readdir($dir_handle)) {
if ($file != "." && $file != "..") {
if($i == 1)
echo "<tr>";
echo "<td ><img src=\"fotos/$file\" width=\"60%\" height=\"%60\" alt=\"$file\" border=\"2\"><br>
<input type=\"button\" id=\"descargar\" value=\"Descargar\"/></td>";
if($i == 6){
echo "</tr>";
$i = 1;
}else
$i++;
}
}
echo "</table>";
quiero que en cada boton se descargue la imagen que le corresponde por favor espero su ayuda..!!