Ver.php
.: CRUD :. <script src="js/jquery.min.js">
<script src="bootstrap/js/bootstrap.min.js"> <script> function loadTabla(){ $('#editModal').modal('hide'); $.get("./php/tabla.php","",function(data){ $("#tabla").html(data); }) } $("#buscar").submit(function(e){ e.preventDefault(); $.get("./php/busqueda.php",$("#buscar").serialize(),function(data){ $("#tabla").html(data); $("#buscar")[0].reset(); }); }); loadTabla(); $("#agregar").submit(function(e){ e.preventDefault(); $.post("./php/agregar.php",$("#agregar").serialize(),function(data){ }); //alert("Agregado exitosamente!"); $("#agregar")[0].reset(); $('#newModal').modal('hide'); loadTabla(); });
Agregar.php query($sql); if($query!=null){ //print "<script>alert(\"Agregado exitosamente.\");window.location='../ver.php';"; }else{ //print "<script>alert(\"No se pudo agregar.\");window.location='../ver.php';"; } } } } ?>
Eliminar.php query($sql); if($query!=null){ print "<script>alert(\"Eliminado exitosamente.\");window.location='../ver.php';"; }else{ print "<script>alert(\"No se pudo eliminar.\");window.location='../ver.php';"; } } ?>
Tabla.php query($sql1); ?> num_rows>0):?>
No hay resultados
<script> $(".btn-edit").click(function(){ id = $(this).data("id"); $.get("./php/formulario.php","id="+id,function(data){ $("#form-edit").html(data); }); $('#editModal').modal('show'); });
Actualizar.php query($sql); if($query!=null){ print "<script>alert(\"Actualizado exitosamente.\");window.location='../ver.php';"; }else{ print "<script>alert(\"No se pudo actualizar.\");window.location='../ver.php';"; } } } } ?>
Buscar.php
.: CRUD :. <script src="js/jquery.min.js">
<script src="bootstrap/js/bootstrap.min.js">
Editar.php
.: CRUD :. <script src="js/jquery.min.js">
<script src="bootstrap/js/bootstrap.min.js">
Index.php
.: CRUD AJAX :. [CRUD] CREATE, RETRIEVE, UPDATE & DELETE Ejemplo de ver, agregar, actualizar, eliminar con PHP y MySQL
Instrucciones:
Ir a la opcion ver. Agregar elementos desde el boton agregar. Seleccionar el boton Editar de cualquier elemento. Seleccionar el boton Eliminar de cualquier elemento. Facil de instalar y modificar Ideal para tu proximo proyecto web
Navbar.php