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");
?>