You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '/practica_php/fotos/eliminar.php' at line 1 y el codigo que tengo es el siguiente
Código :
<?php if(isset($_POST['submit'])){ include ("includes/config.php"); include ("includes/funciones.php"); //nos conectamos a mysql $cnx = conectar (); $sql = "DELETE FROM fotos WHERE id =".$_POST['id'].""; $res = mysql_query($sql) or die(mysql_error()); echo"Registro ".$_GET['id']." eliminado.<br><a href='listado.php'>regresar</a>"; mysql_close($cnx); exit; } //si no hay id, no puede seguir. if(!isset($_GET['id'])){ header("Location: listado.php"); exit; } ?>
Cual puede ser el error ? gracias por la ayuda