-
Notifications
You must be signed in to change notification settings - Fork 0
/
formGrillaWS.php
65 lines (58 loc) · 1.59 KB
/
formGrillaWS.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
require_once('class/persona.php');
?>
<html>
<head>
<title>Ejemplos de ABM - con archivo de texto</title>
<?php //require_once"partes/referencias.php" ;?>
<!--final de Estilos-->
<script type="text/javascript" src="bower_components/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="js/url.js"></script>
<script SRC="js/controlGrilla.js" TYPE="text/javascript"></script>
<!--final logica de programación-->
</head>
<body onload="cargar()">
<?php
//include_once"partes/barraDeMenu.php";
?>
<?php
$mensaje = "Bienvenido .";
/*if(isset($_POST['idParaBorrar']))
{
$resultado = Persona::BorrarPersona($_POST['idParaBorrar']);
$mensaje = "SE HA BORRADO EXITOSAMENTE!!!";
}*/
?>
<form name="frmBorrar" method="POST" >
<input type="hidden" name="idParaBorrar" id="idParaBorrar" />
</form>
<form name="frmModificar" method="POST" action="formAlta.php" >
<input type="hidden" name="idParaModificar" id="idParaModificar" />
</form>
<div class="container">
<div class="page-header">
<center><h3><?php echo $mensaje; ?></h3><h1> Ejemplo de Grilla</h1> </center>
</div>
<div class="CajaInicio animated bounceInRight">
<h1>Listado de personas</h1>
<!-- id="listaPersonas" -->
<table id="listaPersonas">
<thead>
<tr>
<th> Foto </th>
<th> Nombre </th>
<th> Apellido </th>
<th> Dni </th>
</tr>
</thead>
<tr>
</tr>
</table>
</div>
<?php
// include_once"partes/grilla.php";
?>
</div>
</div>
</body>
</html>