-
Notifications
You must be signed in to change notification settings - Fork 0
/
buscar.php
175 lines (153 loc) · 3.6 KB
/
buscar.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?
// Autentificator
// Gestión de Usuarios PHP+Mysql+sesiones
// by Pedro Noves V. (Cluster)
// ------------------------------------------
require("aut_verifica.inc.php");
$nivel_acceso=4; // Nivel de acceso para esta página.
// se chequea si el usuario tiene un nivel inferior
// al del nivel de acceso definido para esta página.
// Si no es correcto, se mada a la página que lo llamo con
// la variable de $error_login definida con el nº de error segun el array de
// aut_mensaje_error.inc.php
if ($nivel_acceso >= $_SESSION['usuario_nivel']){
header ("Location: $redir?error_login=5");
exit;
}
?>
<!doctype html>
<html lang="en">
<head>
<title>6° Congreso de Matemáticas - Registro Trabajos</title>
<?php
include_once "page/head.php";
?>
<script>
<?php
include "script/script_formulario.php";
?>
</script>
</head>
<body>
<div id="formatopagina">
<!-- Cabecera de la página-->
<section id="header">
<?php
include "page/header.php";
?>
</section>
<!--Barra de navegación -->
<section id="nav">
<?php
include "page/menucs.php";
?>
</section>
<!--sección de contenido -->
<section id="seccion" class="formatocentro">
<?
$usuario = $_POST['usuario'];
//conexión con servidor
require('script/bd.php');
//conectar con el servidor
$conn = mysql_connect("$host", "$user", "$pass");
if (!$conn) {
echo "No se posible conectar al servidor. <br>";
trigger_error(mysql_error(), E_USER_ERROR);
}
mysql_query("SET NAMES utf8");
# seleccionar BD
$rdb = mysql_select_db($db);
if (!$rdb) {
echo "No se puede seleccionar la BD. <br>";
trigger_error(mysql_error(), E_USER_ERROR);
}
////////////////////////// FUNCIÓN PARA EJECUTAR QUERY
function exe_query($query){
$r = mysql_query($query);
if (!$r) {
echo "No se ejecutó el query: $query <br>";
trigger_error(mysql_error(), E_USER_ERROR);
}
return $r;
}
//////****Imprime una tabla de la BD****//////
//imprimo id usuario y rol que tiene
$query = "SELECT id_usuario, id_rol FROM usuario_rol WHERE id_usuario = '".$usuario."'";
$r = mysql_query($query);
if(!$r){
echo "No se pudo ejecutar el query: $query";
echo "<br>";
trigger_error(mysql_error(), E_USER_ERROR);
}
else{
echo " ";
echo "<br>";
}
echo "<br>";
echo "<h3>USUARIO: </h3>";
echo "<table border='1'> <tbody>";
echo "<tr>"."<td>"."Id_usuario"."</td><td> "."Nivel de Rol"."</td></tr>";
while ($row = mysql_fetch_assoc($r)){
echo "<tr>"."<td>".$row['id_usuario']."</td><td> ".$row['id_rol']."</td></tr>";
}
echo "</tbody> </table>";
mysql_close();
?>
<br>
<table border="1">
<tbody>
<tr>
<td>Tipo de acceso</td>
<td>Número de asignación de acceso</td>
</tr>
<tr>
<td>Usuario</td>
<td>0</td>
</tr>
<tr>
<td>Revisor</td>
<td>1</td>
</tr>
<tr>
<td>Evaluador</td>
<td>2</td>
</tr>
<tr>
<td>Revisor y Evaluador</td>
<td>3</td>
</tr>
<tr>
<td>Asignar Roles</td>
<td>4</td>
</tr>
<tr>
<td>Revisor y Asignar Roles</td>
<td>5</td>
</tr>
<tr>
<td>Evaluador y Asignar Roles</td>
<td>6</td>
</tr>
<tr>
<td>Administrador</td>
<td>7</td>
</tr>
</tbody>
</table>
</section>
<!-- aside de la página -->
<section id="aside">
<?php
include "page/aside.php";
?>
</section>
<!-- Creditos de la pagina -->
<section id="footer">
<?php
include "page/footer.php";
?>
</section>
</div>
</body>
</html>