<?
include("head.php");
include("datacon.php");
?>
<?
$querydelete = "delete from solicitudcredito_codeudor where ceduladeudor = '$ceduladeudor'";
$resultdelete = MYSQL_QUERY($querydelete);
if ($resultdelete ) {
?>
<h4 align="center">La información del Codeudor ha sido borrada !</h4>
<?
} else {
?>
<h4 align="center">La información del Codeudor no pudo ser borrada !</h4>
<?
}
include("foot.php");
?>