-
Notifications
You must be signed in to change notification settings - Fork 0
/
usuarios.php
executable file
·154 lines (117 loc) · 4.68 KB
/
usuarios.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
include_once('dbconnect.php');
$result = pg_exec($conn, "SELECT * FROM usuarios");
?>
<!DOCTYPE html>
<html>
<head>
<title> Listado de Usuarios</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="js/jquery-3.2.1.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<script src="js/getAPI.js"></script>
<script>
function buscar_usuario() {
var valor_enviar = $('#buscador').val();
console.log(valor_enviar.length);
if (valor_enviar.length > 0) {
$(document).ready(function() {
$.post("usuarios_search_getter.php", {
name: valor_enviar
},
function(data, status) {
$('#resultados').html(data);
});
});
} else {
$('#resultados').html('');
}
}
</script>
<style>
body {
background-color: lightgray;
}
</style>
</head>
<body>
<div class="navbar-wrapper">
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.php">NFL</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav nav-bar-left">
<li><a href="stats.php">Ver Stats</a></li>
</ul>
<?php
if(!isset($_SESSION['username'])){ echo "";
?>
<ul class="nav navbar-nav navbar-right">
<li><a href="login.php">Ingresar</a></li>
<li><a href="register.php">Registrarse</a></li>
</ul>
<?php
}
else{
?>
<ul class="nav navbar-nav navbar-right">
<li><a href="mi_perfil.php"><span style="color:white"><?php echo $_SESSION['username']?> </span> </a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
<?php
}
?>
</div>
</div>
</nav>
</div>
<h1 align="center">Usuarios</h1>
<div class="row">
<div class="col-xs-4">
<input type="text" id="buscador" class="form-control" placeholder="Buscar usuario" onkeyup="buscar_usuario()" align="right">
</div>
</div>
<div id="resultados" style="margin-left:120px;padding-left:5px;"></div>
<table class="table table-striped">
<tr class="active">
<td>Username</td>
<td>Nombres</td>
<td> Equipo Favorito</td>
<td>Jugador Favorito</td>
</tr>
<?php
$todosDatos = array();
$numrows = pg_numrows($result);
for($i=0; $i < $numrows; $i++){
$row = pg_fetch_array($result, $i);
$todosDatos[] = $row;
}
$cantidadDatos = sizeof($todosDatos);
for($i = 0; $i < $cantidadDatos; $i++){
?>
<tr>
<td>
<a href="<?php echo $base_url; ?>/perfil_usuario.php?id=<?php echo $todosDatos[$i]['username']; ?>" title="<?php echo $todosDatos[$i]['username']; ?>">
<?php echo $todosDatos[$i]['username']; ?>
</a>
</td>
<td>
<?php echo $todosDatos[$i]['nombres']; ?> </td>
<td>
<?php echo $todosDatos[$i]['equipo']; ?> </td>
<td>
<?php echo $todosDatos[$i]['jugador']; ?> </td>
</tr>
<?php
}
?>
</table>
</body>
</html>