Código PHP:
<?php
include "conexion.php";
conectar();
$a=mysql_query("select *from directorio") or die (mysql_error());
desconectar();
while($b=mysql_fetch_array()){
echo $id . " - " . $nombre . " - " . $direccion . "<br>";
}
echo '<input type="button" name="borrar" onclick="window.open(\"borrar.php\",\"borrador\",\" \")">';
?>
Código HTML:
y masivo:Ver original
<?php if(isset($_GET['msj'])){echo $_GET['msj'];}?> <form id="form1" name="form1" method="post" action="masivo.php"> <table width="422" border="0" align="center"> <tr> <input name="de" type="text" class="textos" id="de"/> <td width="144"> <input name="hasta" type="text" class="textos" /> </td> </tr> </table> <tr> <td width="97"> <input name="enviar" type="button" class="bottones" id="enviar" value="BORRAR" onclick="if(confirm('Deseas continuar?')){ this.form.submit();} else{ alert('Operacion Cancelada'); }" /> </td> <td width="93"> <input name="Submit" type="button" class="bottones" value="CANCELAR" /> </td> </tr> </table> </form>
Código PHP:
<?php
session_start();
include "conexion.php";
if(!empty($_POST['de']) && !empty($_POST['hasta'])){
$de=$_POST['de'];
$hasta=$_POST['hasta'];
conectar();
$a=mysql_query("DELETE FROM comentarios WHERE id BETWEEN '$de' AND '$hasta'") or die ("Error: " .mysql_error());
desconectar();
if($a){
header("location:borrar.php?msj=CORRECTO");
exit();
}
else{
header("location:r.php?msj=NO EXISTEN DATOS EN ESE RANGO");
}
}
else
{
header("location:borrar.php?msj=DEBES DE PONER UN RANGO");
exit();
}
?>