Viewing file: pruebasd.php (1.68 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php require_once('Connections/oab.php'); ?>
<?php
$kp_rslistado = "0";
if (isset($ruta)) {
$kp_rslistado = (get_magic_quotes_gpc()) ? $ruta : addslashes($ruta);
}
$ks_rslistado = "0";
if (isset($sm)) {
$ks_rslistado = (get_magic_quotes_gpc()) ? $sm : addslashes($sm);
}
$tm_rslistado = "0";
if (isset($tema)) {
$tm_rslistado = (get_magic_quotes_gpc()) ? $tema : addslashes($tema);
}
mysql_select_db($database_oab, $oab);
$query_rslistado = sprintf("SELECT idcontenido, titulo, textoinicial, textocompleto FROM contenidos WHERE catP = %s and catS = %s and tema=%s ORDER BY idcontenido", $kp_rslistado,$ks_rslistado,$tm_rslistado);
$rslistado = mysql_query($query_rslistado, $oab) or die(mysql_error());
$row_rslistado = mysql_fetch_assoc($rslistado);
$totalRows_rslistado = mysql_num_rows($rslistado);
?>
<link href="css/ocglobal.css" rel="stylesheet" type="text/css">
<?php do { ?>
<?php if ($totalRows_rslistado > 0) { // Show if recordset not empty ?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><p> <span class="textoTitulo"><?php echo $row_rslistado['titulo']; ?></span><br>
<span class="textoNormal"><?php echo $row_rslistado['textoinicial']; ?></span>
<br>
<a href="inicio.php?mennu=<? echo $mennu;?>&ruta=<? echo $ruta;?>&sm=<? echo $sm;?>&tema=<? echo $tema;?>&documento=<?php echo $row_rslistado['idcontenido']; ?>
"class="textoNormal">::Ver texto completo::</a> </p></td>
</tr>
<tr>
<td><br> <hr width="50%" size="5"></td>
</tr>
</table>
<?php } // Show if recordset not empty ?>
<?php } while ($row_rslistado = mysql_fetch_assoc($rslistado)); ?>
<?php
mysql_free_result($rslistado);
?>
|