Cita:
Iniciado por elburdel Código PHP:
<?php
$prd_id=$_POST['prd_id'];
include ("conexion1.php");
$borrar="delete from Productos" where prd_id = $prd_id
mysql_query($borrar);
mysql_close();
echo ("Producto borrado con exito");
?>
no deberias cerrar las comillas fijate pones $borrar="delete from productos" where ...
deberia de ser
Código PHP:
$borrar="delete from Productos where prd_id = '$prd_id'";
suerte