Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
recibos /
tabladinamica /
[ HOME SHELL ]
Name
Size
Permission
Action
bd
[ DIR ]
drwxrwxr-x
componentes
[ DIR ]
drwxrwxr-x
js
[ DIR ]
drwxrwxr-x
librerias
[ DIR ]
drwxrwxr-x
php
[ DIR ]
drwxrwxr-x
index.php
4.02
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.php
<?php session_start(); unset($_SESSION['consulta']); ?> <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <title>Tabla dinamica</title> <link rel="stylesheet" type="text/css" href="librerias/bootstrap/css/bootstrap.css"> <link rel="stylesheet" type="text/css" href="librerias/alertifyjs/css/alertify.css"> <link rel="stylesheet" type="text/css" href="librerias/alertifyjs/css/themes/default.css"> <link rel="stylesheet" type="text/css" href="librerias/select2/css/select2.css"> <script src="librerias/jquery-3.2.1.min.js"></script> <script src="js/funciones.js"></script> <script src="librerias/bootstrap/js/bootstrap.js"></script> <script src="librerias/alertifyjs/alertify.js"></script> <script src="librerias/select2/js/select2.js"></script> </head> <body> <div class="container"> <div id="buscador"></div> <div id="tabla"></div> </div> <!-- Modal para registros nuevos --> <div class="modal fade" id="modalNuevo" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title" id="myModalLabel">Agrega nueva persona</h4> </div> <div class="modal-body"> <label>Nombre</label> <input type="text" name="" id="nombre" class="form-control input-sm"> <label>Apellido</label> <input type="text" name="" id="apellido" class="form-control input-sm"> <label>Email</label> <input type="text" name="" id="email" class="form-control input-sm"> <label>telefono</label> <input type="text" name="" id="telefono" class="form-control input-sm"> </div> <div class="modal-footer"> <button type="button" class="btn btn-primary" data-dismiss="modal" id="guardarnuevo"> Agregar </button> </div> </div> </div> </div> <!-- Modal para edicion de datos --> <div class="modal fade" id="modalEdicion" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title" id="myModalLabel">Actualizar datos</h4> </div> <div class="modal-body"> <input type="text" hidden="" id="idpersona" name=""> <label>Nombre</label> <input type="text" name="" id="nombreu" class="form-control input-sm"> <label>Apellido</label> <input type="text" name="" id="apellidou" class="form-control input-sm"> <label>Email</label> <input type="text" name="" id="emailu" class="form-control input-sm"> <label>telefono</label> <input type="text" name="" id="telefonou" class="form-control input-sm"> </div> <div class="modal-footer"> <button type="button" class="btn btn-warning" id="actualizadatos" data-dismiss="modal">Actualizar</button> </div> </div> </div> </div> </body> </html> <script type="text/javascript"> $(document).ready(function(){ $('#tabla').load('componentes/tabla.php'); $('#buscador').load('componentes/buscador.php'); }); </script> <script type="text/javascript"> $(document).ready(function(){ $('#guardarnuevo').click(function(){ nombre=$('#nombre').val(); apellido=$('#apellido').val(); email=$('#email').val(); telefono=$('#telefono').val(); agregardatos(nombre,apellido,email,telefono); }); $('#actualizadatos').click(function(){ actualizaDatos(); }); }); </script>
Close