aca llamo al directorio donde estan almacenadas las imagenes y es donde esta el enlace borrar imagen
Código HTML:
Ver original<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<link rel="shortcut icon" href="http://hostimg.com.ar/images/favicon.png">
<link rel="stylesheet" type="text/css" href="http://hostimg.com.ar/css/moderacion/style.css">
<!---CODIGO DE SEGUIMIENTO DE GOOGLE--->
<script type="text/javascript"> var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-26192364-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script><!---FIN DEL CODIGO DE GOOGLE---> <center>Moderacion</center>
<?
$opciones = "";
//definimos el directorio donde se guadan los archivos
$path = "../../imagenes/";
//abrimos el directorio
$dir = opendir($path);
//guardamos los archivos en un arreglo
$img_total=0;
while ($elemento = readdir($dir))
{
if (strlen($elemento)>3)
{
$img_array[$img_total]=$elemento;
}
$img_total++;
}
for ($i=0;$i<$img_total; $i++)
{
$imagen = $img_array[$i];
$num = $i+1;
$pathimagen=$path.$imagen;
if ($columna==1)
echo "<tr>";
echo "
<td align='center'>";
echo"
<img src='$pathimagen' title='$pathimagen' width='300' height='300' border='5'> <div id='opciones'><b>Click para
</b><a href='borrar.php?path=$pathimagen'>Borrar imagen
</a></br></br><b>Detalles de imagen:
</b>$imagen
</br></br><b>Guardada en:
</b> </br> $path
</div></br>";
if ($columna == $img_col)
{
$columna=1;
}
else
{
$columna++;
}
}
?>
aca mas claro el enlace
<a href='borrar.php?path=$pathimagen'>Borrar imagen</a>
y aca tengo el BORRAR.PHP:
Código PHP:
Ver original<?php
{
}
else
{
echo 'El archivo no existe: ', $pathimage;
}
?>
tengo algo mal hecho?? si me puedes corregir los errores te lo agradesco