Curso de PHP🐘 y MySql🐬 [77.- Borrar registros con PDO]
En este tutorial vamos a aprender a borrar registros con PDO pero lo aremos con consultas preparadas para evitar las inyección de sql.
Eso lo aremos con este codigo:
$query="DELETE FROM productos WHERE id=:id;"; prepare($query); bindParam(':id',$id); if(execute()==true){ return true; } else{ return false; }
Codigo: https://github.com/programadornovato/php/commit/e9560abb00e22b885f397dbb4f0003dd74a86adc
<!doctype html> <html lang="en"> <head> <title>PDO</title> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> <style> input.form-control { font-family: FontAwesome; } </style> </head> <body> <?php include_once "sqlite.php"; $sqlite = new sqlite(); ?> <div class="container mt-3"> <div class="row"> <form> <?php if(isset($_REQUEST['idBorrar'])){ $res=$sqlite->borrar($_REQUEST['idBorrar']); ?> <div class="alert alert-<?php echo $res?"primary":"danger"; ?> alert-dismissible fade show" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> <span class="sr-only">Close</span> </button> <?php echo $res?"Registro borrado":"Registro no borrado"; ?> </div> <?php } ?> <div class="col-12"> <table class="table table-striped"> <thead> <tr> <th><input type="text" name="id" class="form-control" value="<?php echo $_REQUEST['id'] ?? ''; ?>" placeholder=""></th> <th><input type="text" name="nombre" class="form-control" value="<?php echo $_REQUEST['nombre'] ?? ''; ?>" placeholder=""></th> <th><input type="text" name="precio" class="form-control" value="<?php echo $_REQUEST['precio'] ?? ''; ?>" placeholder=""></th> <th><input type="text" name="categoria" class="form-control" value="<?php echo $_REQUEST['categoria'] ?? ''; ?>" placeholder=""></th> <th><input type="text" name="existencia" class="form-control" value="<?php echo $_REQUEST['existencia'] ?? ''; ?>" placeholder=""></th> <th><button type="submit" class="btn btn-primary">Buscar</button></th> <th></th> </tr> <tr> <th>id</th> <th>nombre</th> <th>precio</th> <th>categoria</th> <th>existencia</th> <th>foto</th> <th><a href="crearSQLite.php"><i class="fa fa-plus"></i></a></th> </tr> </thead> <tbody> <?php $resultado = $sqlite->leer($_REQUEST); foreach ($resultado as $key => $value) { ?> <tr> <td><?php echo $value->id; ?></td> <td><?php echo $value->nombre; ?></td> <td><?php echo $value->precio; ?></td> <td><?php echo $value->categoria; ?></td> <td><?php echo $value->existencia; ?></td> <td><?php echo $value->foto; ?></td> <td style="min-width: 100px;"> <a href="editarPDO.php?id=<?php echo $value->id; ?>"><i class="fa fa-edit mr-2"></i></a> <a href="PDO.php?idBorrar=<?php echo $value->id; ?>" class="borrar"><i class="fa fa-trash text-danger"></i></a> </td> </tr> <?php } ?> </tbody> </table> </div> </form> </div> </div> <!-- Optional JavaScript --> <!-- jQuery first, then Popper.js, then Bootstrap JS --> <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> <script> $(document).ready(function () { $(".borrar").click(function (e) { e.preventDefault(); var res=confirm("Realmente desea borrar el registro?"); if(res==true){ location.href=$(this).attr("href"); } }); }); </script> </body> </html>
🔗Acceder a sqlite desde VSCode: https://marketplace.visualstudio.com/items?itemName=alexcvzz.vscode-sqlite
🔗Pagina SQLite: https://www.sqlite.org/index.html
🔗 Fontawesome: https://www.bootstrapcdn.com/fontawesome/
🎦 Esta lista de reproducción: https://www.youtube.com/playlist?list=PLCTD_CpMeEKS2Dvb-WNrAuDAXObB8GzJ0
Codigos en gdrive: https://drive.google.com/file/d/1tQwYvfL2jiUFc6beTWkOkGmXkq5zzFw2/view?usp=sharing
Gracias por apoyar este canal: https://www.patreon.com/programadornovato?fan_landing=true
🔗 Facebook: https://facebook.com/ProgramadorNovatoOficial
🔗 Twitter: https://twitter.com/programadornova
🔗 Linkedin: https://www.linkedin.com/in/programadornovato/
🔗 Instagram: https://www.instagram.com/programadornovato/