Tengo este script en php para listar y eliminar los registros seleccionados, pero quiero que al seleccionar, pregunte si quiere eliminar dicho registro, se me ocurrio usar la funcion "confirm", pero si le pongo en cancelar, si elimina el registro.
Código PHP:
<?php
//Crear conexión a la Base de Datos
$conexion = mysql_connect("localhost","capturista","KNW_password");
if (!$conexion) {
die("Fallo la conexión a la Base de Datos: " . mysql_error());
}
//Seleccionar la Base de Datos a utilizar
$seleccionar_bd = mysql_select_db("pruebas", $conexion);
if (!$seleccionar_bd) {
die("Fallo la selección de la Base de Datos: " . mysql_error());
}
if(@$_REQUEST['action']=="del")
{
mysql_query("DELETE pedimento_info
FROM pedimento_info
WHERE NUM_PEDIMENTO =".round($_REQUEST['NUM_PEDIMENTO']));
}
?>
<body bgcolor="#CCCCCC">
<div align="center">
<table class="titulo_tabla" width="300" border="1" cellspacing="0" cellpadding="0">
<tr>
<th width="200" colspan="3">NUMERO DE PEDIMENTO</th>
</tr>
<?php
$lista = mysql_query("SELECT NUM_PEDIMENTO FROM pedimento_info");
while($rs=mysql_fetch_array($lista)){
echo "<tr>".
"<td align=\"center\" class=\"titulo_tabla\" >".$rs['NUM_PEDIMENTO']."</td>".
"<td align=\"center\" class=\"titulo_tabla\" width=\"50\"><a onclick=\"confirm('Toda la informacion de este pedimento se eliminara. ¿Esta seguro de eliminar dicho pedimento?')\" href=pedimento.php?action=del&NUM_PEDIMENTO=".$rs['NUM_PEDIMENTO']."><img src=\"http://127.0.0.1/testing/IMAGENES/b_drop.png\" alt=\"ELIMINAR\" title=\"Eliminar\"/></a></td>".
"<td align=\"center\" class=\"titulo_tabla\" width=\"50\"><a href=pedimento.php?action=del&NUM_PEDIMENTO=".$rs['NUM_PEDIMENTO']."><img src=\"http://127.0.0.1/testing/IMAGENES/b_edit.png\" alt=\"CASE\" title=\"Editar\"/></a></td>".
"</tr>";
}
?>
</table>