Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/06/2013, 07:09
bernardmore
 
Fecha de Ingreso: mayo-2013
Ubicación: Bucaramanga
Mensajes: 5
Antigüedad: 11 años
Puntos: 0
Agregar ventana de confirmación antes de eliminar registro Dreamweaver

Saludos:

Tengo el siguiente código en Dreamweaver:

<table width="480" border="1" align="left">
<tr>
<td width="22" height="23"><?php echo $row_Recordset2['idescena']; ?></td>
<td width="168"><?php echo $row_Recordset2['descena']; ?></td>
<td width="70"><?php echo $row_Recordset2['Fecha_crea']; ?></td>
<td width="70"><?php echo $row_Recordset2['Fecha_ulmod']; ?></td>
<td width="2"><img src="imagenes/editar.png" width="20" height="19"></td>
<td width="2"><a href="eliminarescena.php?idescena=<?php echo $row_Recordset2['idescena']; ?> "><img src="imagenes/eliminar.png" width="20" height="19"></a></td>



Este código funciona perfecto es decir al hacer clic sobre la imagen de la papelera de reciclaje me elimina el registro de la base de datos..

Pero quiero agregarle una ventana de confirmación.. como lo hago?

Gracias de antemano