Codigo Crud + Busqueda Php.docx

  • Uploaded by: Jose Luis Torres
  • 0
  • 0
  • October 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Codigo Crud + Busqueda Php.docx as PDF for free.

More details

  • Words: 679
  • Pages: 8
Ver.php .: CRUD :. <script src="js/jquery.min.js">

VER ENTRADAS


<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):?> fetch_array()):?>
Nombre Apellido Email Direccion Telefono
" class="btn btn-edit btn-sm btnwarning">Editar " class="btn btn-sm btndanger">Eliminar <script> $("#del-"+).click(function(e){ e.preventDefault(); p = confirm("Estas seguro?"); if(p){ $.get("./php/eliminar.php","id="+,function(data){ loadTabla(); }); } });


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">

BUSCAR

<script src="bootstrap/js/bootstrap.min.js">

Editar.php .: CRUD :. <script src="js/jquery.min.js">

EDITAR

<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:

  1. Ir a la opcion ver.
  2. Agregar elementos desde el boton agregar.
  3. Seleccionar el boton Editar de cualquier elemento.
  4. Seleccionar el boton Eliminar de cualquier elemento.

  • Facil de instalar y modificar
  • Ideal para tu proximo proyecto web


Navbar.php

Related Documents

Busqueda
November 2019 26
Busqueda
November 2019 27
Busqueda
June 2020 12
Busqueda
November 2019 29
Codigo
November 2019 38

More Documents from ""