Parent Directory
|
Revision Log
Revision 7 - (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 : | Design by Free CSS Templates | ||
| 4 : | http://www.freecsstemplates.org | ||
| 5 : | Released for free under a Creative Commons Attribution 2.5 License | ||
| 6 : | |||
| 7 : | Name : Flower Buds | ||
| 8 : | Description: A two-column, fixed-width design with dark color scheme. | ||
| 9 : | Version : 1.0 | ||
| 10 : | Released : 20110409 | ||
| 11 : | |||
| 12 : | --> | ||
| 13 : | <html xmlns="http://www.w3.org/1999/xhtml"> | ||
| 14 : | <head> | ||
| 15 : | <meta name="keywords" content="" /> | ||
| 16 : | <meta name="description" content="" /> | ||
| 17 : | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
| 18 : | <title>Repositorio REA | Consulta de REA</title> | ||
| 19 : | <!--enlazar con la base de datos--> | ||
| 20 : | <?php | ||
| 21 : | include("conexion.php"); | ||
| 22 : | ?> | ||
| 23 : | <!--Enlace con hoja de Estilo--> | ||
| 24 : | <link href="style.css" rel="stylesheet" type="text/css" media="screen" /> | ||
| 25 : | |||
| 26 : | |||
| 27 : | </head> | ||
| 28 : | <body> | ||
| 29 : | <div id="wrapper"> | ||
| 30 : | <div id="membrete"> | ||
| 31 : | </div> | ||
| 32 : | <div id="enlaces"> | ||
| 33 : | <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> | ||
| 34 : | </div> | ||
| 35 : | <div> | ||
| 36 : | <a href="" target="_blank"><img src="http://crearbanner.com/banners/5614790299441665.png" border="0" width="1024" height="90" /></a> | ||
| 37 : | </div> | ||
| 38 : | <!-- end #header --> | ||
| 39 : | <div id="page"> | ||
| 40 : | <div id="page-bgtop"> | ||
| 41 : | <div id="page-bgbtm"> | ||
| 42 : | <div id="content"> | ||
| 43 : | <div class="post"> | ||
| 44 : | <h3 class="title"><a href="#">Recursos Educativos </a></h3> | ||
| 45 : | <p class="links"><a href="#"><font size="3">Buscar por: </font></a></p> | ||
| 46 : | <div style="clear: both;"> </div> | ||
| 47 : | <div class="entry"> | ||
| 48 : | <table><!--Tabla de inserción de datos de la cuenta--> | ||
| 49 : | <tr> | ||
| 50 : | <form name="frm1" action="consulta-por-creador.php" method="post" > | ||
| 51 : | |||
| 52 : | <td align="right">Creador</td> | ||
| 53 : | <td><select name="nombre_apellido" id="nombre_apellido"> | ||
| 54 : | <option selected >-Seleccione Creador-</option> | ||
| 55 : | <?php | ||
| 56 : | $sql= "select*from usuario"; | ||
| 57 : | $cursor = mysql_query($sql); | ||
| 58 : | $num_reg=mysql_num_rows($cursor); | ||
| 59 : | |||
| 60 : | for($u=0;$u<$num_reg;$u++){ | ||
| 61 : | echo '<option>'; | ||
| 62 : | |||
| 63 : | $usuario=mysql_result($cursor,$u,'nombre_apellido'); | ||
| 64 : | |||
| 65 : | echo $usuario; | ||
| 66 : | echo '<br>'; | ||
| 67 : | |||
| 68 : | echo '</option>'; | ||
| 69 : | } | ||
| 70 : | ?> | ||
| 71 : | </select> | ||
| 72 : | <td> | ||
| 73 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 74 : | </form> | ||
| 75 : | </td> | ||
| 76 : | </tr> | ||
| 77 : | <tr> | ||
| 78 : | <form name="frm2" action="consulta-por-titulo.php" method="post" > | ||
| 79 : | <td align="right">Título</td> | ||
| 80 : | <td><select name="titulo"> | ||
| 81 : | <option selected >-Seleccione Título-</option> | ||
| 82 : | <?php | ||
| 83 : | $sql= "select*from rea"; | ||
| 84 : | $cursor = mysql_query($sql); | ||
| 85 : | $num_reg=mysql_num_rows($cursor); | ||
| 86 : | |||
| 87 : | for($t=0;$t<$num_reg;$t++){ | ||
| 88 : | echo '<option>'; | ||
| 89 : | |||
| 90 : | $titulo=mysql_result($cursor,$t,'titulo'); | ||
| 91 : | |||
| 92 : | echo $titulo; | ||
| 93 : | echo '<br>'; | ||
| 94 : | |||
| 95 : | echo '</option>'; | ||
| 96 : | } | ||
| 97 : | ?> | ||
| 98 : | </select></td> | ||
| 99 : | <td> | ||
| 100 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 101 : | </form> | ||
| 102 : | </td> | ||
| 103 : | </tr><tr> | ||
| 104 : | <form name="frm3" action="consulta-por-tema.php" method="post" > | ||
| 105 : | <td align="right">Tema</td> | ||
| 106 : | <td><select name="tema" id="tema"> | ||
| 107 : | <option selected >-Seleccione Tema-</option> | ||
| 108 : | <?php | ||
| 109 : | $sql= "select*from tema"; | ||
| 110 : | $cursor = mysql_query($sql); | ||
| 111 : | $num_reg=mysql_num_rows($cursor); | ||
| 112 : | |||
| 113 : | for($tm=0;$tm<$num_reg;$tm++){ | ||
| 114 : | echo '<option>'; | ||
| 115 : | |||
| 116 : | $tema=mysql_result($cursor,$tm,'tema'); | ||
| 117 : | |||
| 118 : | echo $tema; | ||
| 119 : | echo '<br>'; | ||
| 120 : | |||
| 121 : | echo '</option>'; | ||
| 122 : | } | ||
| 123 : | ?> | ||
| 124 : | </select></td> | ||
| 125 : | <td> | ||
| 126 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 127 : | </form> | ||
| 128 : | </td> | ||
| 129 : | </tr> | ||
| 130 : | <tr> | ||
| 131 : | <form name="frm4" action="consulta-por-ne.php" method="post" > | ||
| 132 : | <td align="right">Nivel Educativo</td> | ||
| 133 : | <td><select name="nivel_educativo" id="nivel_educativo"> | ||
| 134 : | <option selected >-Seleccione Nivel Educativo-</option> | ||
| 135 : | <?php | ||
| 136 : | $sql= "select*from nivel_educativo"; | ||
| 137 : | $cursor = mysql_query($sql); | ||
| 138 : | $num_reg=mysql_num_rows($cursor); | ||
| 139 : | |||
| 140 : | for($n=0;$n<$num_reg;$n++){ | ||
| 141 : | echo '<option>'; | ||
| 142 : | |||
| 143 : | $nivel_educativo=mysql_result($cursor,$n,'nivel_educativo'); | ||
| 144 : | |||
| 145 : | echo $nivel_educativo; | ||
| 146 : | echo '<br>'; | ||
| 147 : | |||
| 148 : | echo '</option>'; | ||
| 149 : | } | ||
| 150 : | ?> | ||
| 151 : | </select></td> | ||
| 152 : | <td> | ||
| 153 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 154 : | </form> | ||
| 155 : | </td> | ||
| 156 : | </tr> | ||
| 157 : | <tr> | ||
| 158 : | <form name="frm5" action="consulta-por-tm.php" method="post" > | ||
| 159 : | <td align="right">Tipo de Material</td> | ||
| 160 : | <td><select name="nivel_educativo" id="nivel_educativo"> | ||
| 161 : | <option selected >-Seleccione el Tipo de Material-</option> | ||
| 162 : | <?php | ||
| 163 : | $sql= "select*from tipo_material"; | ||
| 164 : | $cursor = mysql_query($sql); | ||
| 165 : | $num_reg=mysql_num_rows($cursor); | ||
| 166 : | |||
| 167 : | for($tip=0;$tip<$num_reg;$tip++){ | ||
| 168 : | echo '<option>'; | ||
| 169 : | |||
| 170 : | $tipo_material=mysql_result($cursor,$tip,'tipo_material'); | ||
| 171 : | |||
| 172 : | echo $tipo_material; | ||
| 173 : | echo '<br>'; | ||
| 174 : | |||
| 175 : | echo '</option>'; | ||
| 176 : | } | ||
| 177 : | ?> | ||
| 178 : | </select></td> | ||
| 179 : | <td> | ||
| 180 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 181 : | </form> | ||
| 182 : | </td> | ||
| 183 : | </tr> | ||
| 184 : | <tr> | ||
| 185 : | <form name="frm6" action="consulta-por-fm.php" method="post" > | ||
| 186 : | <td align="right">Formato del Material</td> | ||
| 187 : | <td> <select name="nivel_educativo" id="nivel_educativo"> | ||
| 188 : | <option selected >-Seleccione Formato del Material-</option> | ||
| 189 : | <?php | ||
| 190 : | $sql= "select*from formato_material"; | ||
| 191 : | $cursor = mysql_query($sql); | ||
| 192 : | $num_reg=mysql_num_rows($cursor); | ||
| 193 : | |||
| 194 : | for($f=0;$f<$num_reg;$f++){ | ||
| 195 : | echo '<option>'; | ||
| 196 : | |||
| 197 : | $formato_material=mysql_result($cursor,$f,'formato_material'); | ||
| 198 : | |||
| 199 : | echo $formato_material; | ||
| 200 : | echo '<br>'; | ||
| 201 : | |||
| 202 : | echo '</option>'; | ||
| 203 : | } | ||
| 204 : | ?> | ||
| 205 : | </select></td> | ||
| 206 : | <td> | ||
| 207 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 208 : | </form> | ||
| 209 : | </td> | ||
| 210 : | </tr> | ||
| 211 : | <tr> | ||
| 212 : | <form name="frm7" action="consulta-por-fm.php" method="post"> | ||
| 213 : | <td align="right">Destinado a (Tipo de Usuario)</td> | ||
| 214 : | <td> | ||
| 215 : | <select name="nivel_educativo" id="nivel_educativo"> | ||
| 216 : | <option selected >-Seleccione Tipo de Usuario-</option> | ||
| 217 : | <?php | ||
| 218 : | $sql= "select*from tipo_usuario"; | ||
| 219 : | $cursor = mysql_query($sql); | ||
| 220 : | $num_reg=mysql_num_rows($cursor); | ||
| 221 : | |||
| 222 : | for($tu=0;$tu<$num_reg;$tu++){ | ||
| 223 : | echo '<option>'; | ||
| 224 : | |||
| 225 : | $tipo_usuario=mysql_result($cursor,$tu,'tipo_usuario'); | ||
| 226 : | |||
| 227 : | echo $tipo_usuario; | ||
| 228 : | echo '<br>'; | ||
| 229 : | |||
| 230 : | echo '</option>'; | ||
| 231 : | } | ||
| 232 : | ?> | ||
| 233 : | </select> | ||
| 234 : | </td> | ||
| 235 : | <td> | ||
| 236 : | <input type="submit" value="Consultar" title="Consultar REA" /> | ||
| 237 : | </form> | ||
| 238 : | </td> | ||
| 239 : | </tr> | ||
| 240 : | <tr> | ||
| 241 : | <td align="right">Tipo de Licencias</td> | ||
| 242 : | <td>Iconos de convinaciones | ||
| 243 : | </td> | ||
| 244 : | </tr> | ||
| 245 : | |||
| 246 : | </table> | ||
| 247 : | </div> | ||
| 248 : | </div> | ||
| 249 : | <div class="post"> | ||
| 250 : | <div class="entry"> | ||
| 251 : | <table align="center"><tr><td> | ||
| 252 : | <form> | ||
| 253 : | <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> | ||
| 254 : | </form> | ||
| 255 : | </div> | ||
| 256 : | </div> | ||
| 257 : | <div style="clear: both;"> </div> | ||
| 258 : | </div> | ||
| 259 : | |||
| 260 : | |||
| 261 : | |||
| 262 : | <!-- end #content --> | ||
| 263 : | <!--Contenido de izquierda--> | ||
| 264 : | <div id="sidebar" align="center"> | ||
| 265 : | <div align="center"> | ||
| 266 : | <a href="http://www.cenditel.gob.ve"><img src="/repositorio_rea/imagenes/logocenditel.jpg" id="cenditel" title="Principal | Cenditel Nodo Mérida" ></a> | ||
| 267 : | </div><br /><br /> | ||
| 268 : | <!--Inicio de Menu--> | ||
| 269 : | <div align="center" id="menu"> | ||
| 270 : | <ul> | ||
| 271 : | <li><a href="index.html" title="Página Principal">Inicio</a></li> | ||
| 272 : | <li><a href="#" title="Usuario">Usuario</a></li> | ||
| 273 : | <ul id="navi"><!-- creacion de submenus--> | ||
| 274 : | <li><a href="crear-usuario.php" title="Crear Usuario"> Crear Usuario</a></li> | ||
| 275 : | <li><a href="inicio-sesion.php" title="Iniciar Sesión"> Iniciar Sesión</a></li> | ||
| 276 : | <li><a href="menu-usuario.php" title="¿Qué desea hacer?"> Operaciones</a></li> | ||
| 277 : | </ul><!-- fin de submenu--> | ||
| 278 : | <li><a href="#3" title="Recursos Educativos">Recursos Educativos</a></li> | ||
| 279 : | <ul id="navi"><!-- creacion de submenus--> | ||
| 280 : | <li><a href="consulta-rea.php" title="Consultar REA">Consultar REA</a></li> | ||
| 281 : | <li><a href="agregar-rea.php" title="Insertar REA"> Insertar REA</a></li> | ||
| 282 : | </ul><!-- fin de submenu--> | ||
| 283 : | </ul> | ||
| 284 : | </div> | ||
| 285 : | <!--Fin del menu--> | ||
| 286 : | <br /> | ||
| 287 : | <br /> | ||
| 288 : | <br /> | ||
| 289 : | <br /> | ||
| 290 : | <!-- enlace con el blog de RADECON --> | ||
| 291 : | <div> | ||
| 292 : | <table style="background-color:transparent;border: 0px" border="0" width="170px" align="center" id="linkradecon"> | ||
| 293 : | <tr><td bordercolor="white" align="center"> | ||
| 294 : | <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> | ||
| 295 : | <a href="http://radecon.cenditel.gob.ve/"><b><b>Red de defensa del conocimiento</b></h5></a> | ||
| 296 : | </td></tr></table> | ||
| 297 : | </div> | ||
| 298 : | </div> | ||
| 299 : | |||
| 300 : | <!-- end #sidebar --> | ||
| 301 : | <div style="clear: both;"> </div> | ||
| 302 : | </div> | ||
| 303 : | </div> | ||
| 304 : | </div> | ||
| 305 : | <!-- end #page --> | ||
| 306 : | </div> | ||
| 307 : | <div id="footer"> | ||
| 308 : | <HR WIDTH=1024px> | ||
| 309 : | <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> | ||
| 310 : | </div> | ||
| 311 : | <!-- end #footer --> | ||
| 312 : | </body> | ||
| 313 : | </html> |
| root@fsl.cenditel.gob.ve | ViewVC Help |
| Powered by ViewVC 1.0.0 |