Ver Mensaje Individual
  #6 (permalink)  
Antiguo 29/04/2013, 11:40
hans2488
 
Fecha de Ingreso: septiembre-2010
Mensajes: 64
Antigüedad: 14 años, 4 meses
Puntos: 5
Pregunta Respuesta: Consulta borrar imagenes desde carpeta

Me complique mas con mi codigo, consegui un codigo que hace lo q quiero pero no lo puedo adaptar una ayuda porfavor
Código PHP:
<?php
include("conexion.php");
$MainSQL="SELECT * FROM alumnos where id=" $_GET['id'];
$res mysql_query($MainSQL);
$row=mysql_fetch_array($res);
$nombre $row[0];
$apellidos=$row[1];
$no_control $row[2];
$carrera=$row[3];
$correo $row[4];
$ingreso=$row[5];
$egreso $row[6];
$imagen=$row[7];
$ruta "imagen/";
$sql="DELETE from alumnos where id=".$_GET["id"];
mysql_query($sql)
unlink($ruta.$imagen);



include(
"bajas.php");


?>