Parent Directory
|
Revision Log
Revision 9 - (view) (download) (as text)
| 1 : | egutierrez | 7 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 2 : | <!-- | ||
| 3 : | egutierrez | 9 | Diseñado por Estefani Gutiérrez |
| 4 : | egutierrez | 7 | |
| 5 : | egutierrez | 9 | Nombre : Repositorio de Licencias Educativas REAS |
| 6 : | Descripción: | ||
| 7 : | Versión : | ||
| 8 : | --> | ||
| 9 : | egutierrez | 7 | |
| 10 : | <html xmlns="http://www.w3.org/1999/xhtml"> | ||
| 11 : | <head> | ||
| 12 : | <meta name="keywords" content="" /> | ||
| 13 : | <meta name="description" content="" /> | ||
| 14 : | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
| 15 : | egutierrez | 9 | <title>Repositorio de Licencias | Consulta de REA</title> |
| 16 : | egutierrez | 7 | <!--enlazar con la base de datos--> |
| 17 : | <?php | ||
| 18 : | include("conexion.php"); | ||
| 19 : | ?> | ||
| 20 : | <!--Enlace con hoja de Estilo--> | ||
| 21 : | <link href="style.css" rel="stylesheet" type="text/css" media="screen" /> | ||
| 22 : | |||
| 23 : | |||
| 24 : | egutierrez | 9 | <link rel="stylesheet" href="menu8.css" type="text/css" /> |
| 25 : | <!--[if IE 6]><style>#menu ul li.nivel1 {margin-bottom:-1px}</style><![endif]--> | ||
| 26 : | <!--[if IE 7]><style>#menu ul li.nivel1 {margin-bottom:-2px}</style><![endif]--> | ||
| 27 : | <!-- Invocacion de validaciones JavaScript--> | ||
| 28 : | <script type="text/javascript" src="/repositorio_rea/js/validaciones.js"></script> | ||
| 29 : | egutierrez | 7 | </head> |
| 30 : | <body> | ||
| 31 : | <div id="wrapper"> | ||
| 32 : | <div id="membrete"> | ||
| 33 : | </div> | ||
| 34 : | <div id="enlaces"> | ||
| 35 : | <p align="right"><a href="http://www.cenditel.gob.ve/" title="Principal | Cenditel Nodo Mérida">Cenditel</a> | <a href="#noticias" title="Noticias">Noticias</a></p> | ||
| 36 : | </div> | ||
| 37 : | egutierrez | 9 | <div id="titulo"> |
| 38 : | egutierrez | 7 | </div> |
| 39 : | <!-- end #header --> | ||
| 40 : | <div id="page"> | ||
| 41 : | <div id="page-bgtop"> | ||
| 42 : | <div id="page-bgbtm"> | ||
| 43 : | <div id="content"> | ||
| 44 : | <div class="post"> | ||
| 45 : | <h3 class="title"><a href="#">Recursos Educativos </a></h3> | ||
| 46 : | <p class="links"><a href="#"><font size="3">Buscar por: </font></a></p> | ||
| 47 : | <div style="clear: both;"> </div> | ||
| 48 : | <div class="entry"> | ||
| 49 : | <table><!--Tabla de inserción de datos de la cuenta--> | ||
| 50 : | <tr> | ||
| 51 : | <form name="frm1" action="consulta-por-creador.php" method="post" > | ||
| 52 : | |||
| 53 : | <td align="right">Creador</td> | ||
| 54 : | egutierrez | 9 | <td><select name="nombre_apellido" id="nombre_apellido" onblur="seleccion_creador('nombre_apellido')"> |
| 55 : | egutierrez | 7 | <option selected >-Seleccione Creador-</option> |
| 56 : | <?php | ||
| 57 : | $sql= "select*from usuario"; | ||
| 58 : | $cursor = mysql_query($sql); | ||
| 59 : | $num_reg=mysql_num_rows($cursor); | ||
| 60 : | |||
| 61 : | for($u=0;$u<$num_reg;$u++){ | ||
| 62 : | echo '<option>'; | ||
| 63 : | |||
| 64 : | $usuario=mysql_result($cursor,$u,'nombre_apellido'); | ||
| 65 : | |||
| 66 : | echo $usuario; | ||
| 67 : | echo '<br>'; | ||
| 68 : | |||
| 69 : | echo '</option>'; | ||
| 70 : | } | ||
| 71 : | ?> | ||
| 72 : | </select> | ||
| 73 : | <td> | ||
| 74 : | egutierrez | 9 | <input type="submit" value="Consultar" title="Consultar REA"/> |
| 75 : | egutierrez | 7 | </form> |
| 76 : | </td> | ||
| 77 : | </tr> | ||
| 78 : | <tr> | ||
| 79 : | <form name="frm2" action="consulta-por-titulo.php" method="post" > | ||
| 80 : | <td align="right">Título</td> | ||
| 81 : | egutierrez | 9 | <td><select name="titulo" id="tit" onblur="seleccion_titulo('tit')"> |
| 82 : | egutierrez | 7 | <option selected >-Seleccione Título-</option> |
| 83 : | <?php | ||
| 84 : | $sql= "select*from rea"; | ||
| 85 : | $cursor = mysql_query($sql); | ||
| 86 : | $num_reg=mysql_num_rows($cursor); | ||
| 87 : | |||
| 88 : | for($t=0;$t<$num_reg;$t++){ | ||
| 89 : | echo '<option>'; | ||
| 90 : | |||
| 91 : | $titulo=mysql_result($cursor,$t,'titulo'); | ||
| 92 : | |||
| 93 : | echo $titulo; | ||
| 94 : | echo '<br>'; | ||
| 95 : | |||
| 96 : | echo '</option>'; | ||
| 97 : | } | ||
| 98 : | ?> | ||
| 99 : | </select></td> | ||
| 100 : | <td> | ||
| 101 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 102 : | </form> | ||
| 103 : | </td> | ||
| 104 : | </tr><tr> | ||
| 105 : | <form name="frm3" action="consulta-por-tema.php" method="post" > | ||
| 106 : | <td align="right">Tema</td> | ||
| 107 : | egutierrez | 9 | <td><select name="tema" id="tema" onblur="seleccion_tema('tema')"> |
| 108 : | egutierrez | 7 | <option selected >-Seleccione Tema-</option> |
| 109 : | <?php | ||
| 110 : | $sql= "select*from tema"; | ||
| 111 : | $cursor = mysql_query($sql); | ||
| 112 : | $num_reg=mysql_num_rows($cursor); | ||
| 113 : | |||
| 114 : | for($tm=0;$tm<$num_reg;$tm++){ | ||
| 115 : | echo '<option>'; | ||
| 116 : | |||
| 117 : | $tema=mysql_result($cursor,$tm,'tema'); | ||
| 118 : | |||
| 119 : | echo $tema; | ||
| 120 : | echo '<br>'; | ||
| 121 : | |||
| 122 : | echo '</option>'; | ||
| 123 : | } | ||
| 124 : | ?> | ||
| 125 : | </select></td> | ||
| 126 : | <td> | ||
| 127 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 128 : | </form> | ||
| 129 : | </td> | ||
| 130 : | </tr> | ||
| 131 : | <tr> | ||
| 132 : | <form name="frm4" action="consulta-por-ne.php" method="post" > | ||
| 133 : | <td align="right">Nivel Educativo</td> | ||
| 134 : | egutierrez | 9 | <td><select name="nivel_educativo" id="nivel_educativo" onblur="seleccion_ne('nivel_educativo')"> |
| 135 : | egutierrez | 7 | <option selected >-Seleccione Nivel Educativo-</option> |
| 136 : | <?php | ||
| 137 : | $sql= "select*from nivel_educativo"; | ||
| 138 : | $cursor = mysql_query($sql); | ||
| 139 : | $num_reg=mysql_num_rows($cursor); | ||
| 140 : | |||
| 141 : | for($n=0;$n<$num_reg;$n++){ | ||
| 142 : | echo '<option>'; | ||
| 143 : | |||
| 144 : | $nivel_educativo=mysql_result($cursor,$n,'nivel_educativo'); | ||
| 145 : | |||
| 146 : | echo $nivel_educativo; | ||
| 147 : | echo '<br>'; | ||
| 148 : | |||
| 149 : | echo '</option>'; | ||
| 150 : | } | ||
| 151 : | ?> | ||
| 152 : | </select></td> | ||
| 153 : | <td> | ||
| 154 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 155 : | </form> | ||
| 156 : | </td> | ||
| 157 : | </tr> | ||
| 158 : | <tr> | ||
| 159 : | <form name="frm5" action="consulta-por-tm.php" method="post" > | ||
| 160 : | <td align="right">Tipo de Material</td> | ||
| 161 : | egutierrez | 9 | <td><select name="tipo_material" id="tipo_material" onblur="seleccion_tm('tipo_material')"> |
| 162 : | egutierrez | 7 | <option selected >-Seleccione el Tipo de Material-</option> |
| 163 : | <?php | ||
| 164 : | $sql= "select*from tipo_material"; | ||
| 165 : | $cursor = mysql_query($sql); | ||
| 166 : | $num_reg=mysql_num_rows($cursor); | ||
| 167 : | |||
| 168 : | for($tip=0;$tip<$num_reg;$tip++){ | ||
| 169 : | echo '<option>'; | ||
| 170 : | |||
| 171 : | $tipo_material=mysql_result($cursor,$tip,'tipo_material'); | ||
| 172 : | |||
| 173 : | echo $tipo_material; | ||
| 174 : | echo '<br>'; | ||
| 175 : | |||
| 176 : | echo '</option>'; | ||
| 177 : | } | ||
| 178 : | ?> | ||
| 179 : | </select></td> | ||
| 180 : | <td> | ||
| 181 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 182 : | </form> | ||
| 183 : | </td> | ||
| 184 : | </tr> | ||
| 185 : | <tr> | ||
| 186 : | <form name="frm6" action="consulta-por-fm.php" method="post" > | ||
| 187 : | <td align="right">Formato del Material</td> | ||
| 188 : | egutierrez | 9 | <td> <select name="formato_material" id="formato_material" onblur="seleccion_fm('formato_material')"> |
| 189 : | egutierrez | 7 | <option selected >-Seleccione Formato del Material-</option> |
| 190 : | <?php | ||
| 191 : | $sql= "select*from formato_material"; | ||
| 192 : | $cursor = mysql_query($sql); | ||
| 193 : | $num_reg=mysql_num_rows($cursor); | ||
| 194 : | |||
| 195 : | for($f=0;$f<$num_reg;$f++){ | ||
| 196 : | echo '<option>'; | ||
| 197 : | |||
| 198 : | $formato_material=mysql_result($cursor,$f,'formato_material'); | ||
| 199 : | |||
| 200 : | echo $formato_material; | ||
| 201 : | echo '<br>'; | ||
| 202 : | |||
| 203 : | echo '</option>'; | ||
| 204 : | } | ||
| 205 : | ?> | ||
| 206 : | </select></td> | ||
| 207 : | <td> | ||
| 208 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 209 : | </form> | ||
| 210 : | </td> | ||
| 211 : | </tr> | ||
| 212 : | <tr> | ||
| 213 : | egutierrez | 9 | <form name="frm7" action="consulta-por-tu.php" method="post"> |
| 214 : | egutierrez | 7 | <td align="right">Destinado a (Tipo de Usuario)</td> |
| 215 : | <td> | ||
| 216 : | egutierrez | 9 | <select name="tipo_usuario" id="tipo_usuario" onblur="seleccion_tu('tipo_usuario')"> |
| 217 : | egutierrez | 7 | <option selected >-Seleccione Tipo de Usuario-</option> |
| 218 : | <?php | ||
| 219 : | $sql= "select*from tipo_usuario"; | ||
| 220 : | $cursor = mysql_query($sql); | ||
| 221 : | $num_reg=mysql_num_rows($cursor); | ||
| 222 : | |||
| 223 : | for($tu=0;$tu<$num_reg;$tu++){ | ||
| 224 : | echo '<option>'; | ||
| 225 : | |||
| 226 : | $tipo_usuario=mysql_result($cursor,$tu,'tipo_usuario'); | ||
| 227 : | |||
| 228 : | echo $tipo_usuario; | ||
| 229 : | echo '<br>'; | ||
| 230 : | |||
| 231 : | echo '</option>'; | ||
| 232 : | } | ||
| 233 : | ?> | ||
| 234 : | </select> | ||
| 235 : | </td> | ||
| 236 : | <td> | ||
| 237 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 238 : | </form> | ||
| 239 : | </td> | ||
| 240 : | </tr> | ||
| 241 : | <tr> | ||
| 242 : | <td align="right">Tipo de Licencias</td> | ||
| 243 : | <td>Iconos de convinaciones | ||
| 244 : | </td> | ||
| 245 : | </tr> | ||
| 246 : | |||
| 247 : | </table> | ||
| 248 : | </div> | ||
| 249 : | </div> | ||
| 250 : | <div class="post"> | ||
| 251 : | <div class="entry"> | ||
| 252 : | <table align="center"><tr><td> | ||
| 253 : | <form> | ||
| 254 : | <br /><a href="consulta-todos-rea.php"><input type="button" value="Consultar Todos los REA" name="consultar_todo" id="consultar_todo" title="Crear Usuario"/></a></td></tr></table> | ||
| 255 : | </form> | ||
| 256 : | </div> | ||
| 257 : | </div> | ||
| 258 : | <div style="clear: both;"> </div> | ||
| 259 : | </div> | ||
| 260 : | |||
| 261 : | |||
| 262 : | |||
| 263 : | <!-- end #content --> | ||
| 264 : | <!--Contenido de izquierda--> | ||
| 265 : | <div id="sidebar" align="center"> | ||
| 266 : | <div align="center"> | ||
| 267 : | <a href="http://www.cenditel.gob.ve"><img src="/repositorio_rea/imagenes/logocenditel.jpg" id="cenditel" title="Principal | Cenditel Nodo Mérida" ></a> | ||
| 268 : | </div><br /><br /> | ||
| 269 : | egutierrez | 9 | <!--Inicio de Menu--> |
| 270 : | egutierrez | 7 | <div align="center" id="menu"> |
| 271 : | egutierrez | 9 | <ul> |
| 272 : | <li class="nivel1 primera"><a href="index.html" title="Página Principal" class="nivel1"><img src="/repositorio_rea/imagenes/inicio.png"></img></a> | ||
| 273 : | <!--[if lte IE 6]><a href="#" class="nivel1ie">Opción 1<table class="falsa"><tr><td><![endif]--> | ||
| 274 : | </li> | ||
| 275 : | <li class="nivel1"><a href="" class="nivel1"><img src="/repositorio_rea/imagenes/usuario.png"></img></a> | ||
| 276 : | <!--[if lte IE 6]><a href="#" class="nivel1ie">Opción 2<table class="falsa"><tr><td><![endif]--> | ||
| 277 : | <ul> | ||
| 278 : | <li class="primera"><a href="crear-usuario.php" title="Crear Usuario"><img src="/repositorio_rea/imagenes/crear usuario.png"></img></a></li> | ||
| 279 : | <li><a href="inicio-sesion.php" title="Iniciar Sesión"><img src="/repositorio_rea/imagenes/iniciar sesion.png"></img></a></li> | ||
| 280 : | <li><a href="menu-usuario.php" title="¿Qué desea hacer?"><img src="/repositorio_rea/imagenes/operaciones.png"></img></a></li> | ||
| 281 : | </ul> | ||
| 282 : | <!--[if lte IE 6]></td></tr></table></a><![endif]--> | ||
| 283 : | </li> | ||
| 284 : | <li class="nivel1"><a href="" class="nivel1"><img src="/repositorio_rea/imagenes/recursos educativos.png"></img></a> | ||
| 285 : | <!--[if lte IE 6]><a href="#" class="nivel1ie">Opción 3<table class="falsa"><tr><td><![endif]--> | ||
| 286 : | <ul> | ||
| 287 : | <li class="primera"><a href="consulta-rea.php" title="Consultar REA"><img src="/repositorio_rea/imagenes/consulta rea.png"></img></a></li> | ||
| 288 : | <li><a href="agregar-rea.php" title="Insertar REA"><img src="/repositorio_rea/imagenes/inserta rea.png"></img></a></li> | ||
| 289 : | </ul> | ||
| 290 : | <!--[if lte IE 6]></td></tr></table></a><![endif]--> | ||
| 291 : | </li> | ||
| 292 : | </ul> | ||
| 293 : | |||
| 294 : | </div> | ||
| 295 : | |||
| 296 : | <!--Fin del menu--> | ||
| 297 : | egutierrez | 7 | <br /> |
| 298 : | <br /> | ||
| 299 : | <br /> | ||
| 300 : | <br /> | ||
| 301 : | <!-- enlace con el blog de RADECON --> | ||
| 302 : | <div> | ||
| 303 : | <table style="background-color:transparent;border: 0px" border="0" width="170px" align="center" id="linkradecon"> | ||
| 304 : | <tr><td bordercolor="white" align="center"> | ||
| 305 : | <a href="http://radecon.cenditel.gob.ve"><img src="/repositorio_rea/imagenes/radecon.jpg" id="radecon" title="Red de defensa del conocimiento" width="170px"></a> | ||
| 306 : | <a href="http://radecon.cenditel.gob.ve/"><b><b>Red de defensa del conocimiento</b></h5></a> | ||
| 307 : | </td></tr></table> | ||
| 308 : | </div> | ||
| 309 : | </div> | ||
| 310 : | |||
| 311 : | <!-- end #sidebar --> | ||
| 312 : | <div style="clear: both;"> </div> | ||
| 313 : | </div> | ||
| 314 : | </div> | ||
| 315 : | </div> | ||
| 316 : | <!-- end #page --> | ||
| 317 : | </div> | ||
| 318 : | <div id="footer"> | ||
| 319 : | <HR WIDTH=1024px> | ||
| 320 : | <p>FUNDACIÓN CENTRO NACIONAL DE DESARROLLO E INVESTIGACIÓN EN TECNOLOGÍAS LIBRES (CENDITEL) Avenida Alberto Carnevali, vÍa La Hechicera, Edificio CENDITEL. TelÉfono: (0274)6574336 - 6574958. Apartado Postal: 078. CÓdigo Postal: 5101A. RIF: G-20007349-7. MÉrida-Venezuela</p> | ||
| 321 : | </div> | ||
| 322 : | <!-- end #footer --> | ||
| 323 : | </body> | ||
| 324 : | </html> |
| root@fsl.cenditel.gob.ve | ViewVC Help |
| Powered by ViewVC 1.0.0 |