-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtbClient.php
61 lines (49 loc) · 2.22 KB
/
tbClient.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
<?php
/*In this section there are a table who show all the data charge from the data base of the table tbClient*/
//require 'db/db.php';
$data = $database->select("tbusers", "*", ["state"=>"Activo"]);
?>
<html>
<head> </head>
<body>
<div class="containerCenter tableSize ">
<section>
<div class="row">
<div class="col-xs-12">
<div class="table-responsive">
<p class="font-style_4 title_table">Usuarios</p>
<article class="tbl-header">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<th id="name">Nombre</th>
<th id="id">Identificación</th>
<th id="login">Usuario</th>
<th id="opciones">Opciones</th>
</tr>
</table>
</article>
<div class="tbl-content">
<table cellpadding="0" cellspacing="0" border="0">
<?php
$len = count($data);
for($i=0; $i<$len; $i++){
echo "<tr><td>".$data[$i]["name"]."</td><td>".$data[$i]["identification"]."</td><td>".$data[$i]["login"]."</td><td>"."</td><td><a href='edittable.php?type=3&id=".$data[$i]["idUser"]."'>Editar</a> <a href='eliminator.php?type=3&id=".$data[$i]["idUser"]."' >Eliminar</a></td></tr>";
}
?>
</table>
</div>
</div>
</div>
</div>
</section>
</div>
<!--
<div id="myModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
</div>
</div>
</div>
-->
</body>
</html>