Viewing file: noticia_2.php (3.28 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
if (isset($d) and isset($m) and isset($y))
{
$fecha = $y . "-" . $m . "-" . $d . " 00:00:00";
}else{
$f = new fecha;
$f->sys_fecha();
$fecha = $f->FECHA_SYS;
}
// echo $fecha;
$cuando = "contenido_links.links_id = $h_id";
$control = new select_pg(2, "contenido_links.links_nombre, contenido_links.links_descripcion, contenido_links.links_texto, contenido_links.links_id, contenido_links.links_foro", "contenido_links, contenido_pertenencia_categoria_links", $cuando, 5, 4, "(nombre)-(descripcion)-(texto)-(id)", "<p><font size=\"4\"><a href=\"frame_detalle.php?h_id=(id)\"><b>(nombre)</b></a></font></p>", $name_page ,$inicio);
$descripcion = $control->RESULTADOS[0][1];
$texto = $control->RESULTADOS[0][2];
if ($descripcion == $texto) {
$descripcion = substr($descripcion, 0, 100) . "...";
}
echo "<p><font size=\"3\">". $descripcion ."</font></p><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"punteado\"><tr><td height=\"2\"></td></tr></table>";
$texto = str_replace("[salto]","",$texto);
echo "<p>" . $texto . "</p>";
if ($control->RESULTADOS[0][4] == 1) {
?>
<table width="100%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td bgcolor="#CCCCCC"><div><strong>Opine sobre: <?php echo $control->RESULTADOS[0][0]; ?></strong></div></td>
</tr>
<tr>
<td><form name="form1" method="post" action="<?php echo $name_page; ?>">
<table width="100%" border="0" cellspacing="0" cellpadding="4">
<tr>
<td width="50%"><p>Alias:
<input name="foro_nombre_usuario" type="text" id="foro_nombre_usuario"></p></td>
<td width="50%"><p>Tìtulo Comentario: <input name="foro_comentario_titulo" type="text" id="foro_comentario_titulo"></p></td>
</tr>
<tr>
<td width="50%" align="right"><p>Comentario:</p></td>
<td width="50%" rowspan="2"><textarea name="foro_comentario_texto" id="foro_comentario_texto"></textarea></td>
</tr>
<tr>
<td width="50%"> </td>
</tr>
<tr align="center">
<td colspan="2"> <input type="submit" name="Submit" value="Enviar mi comentario">
<input name="id_app" type="hidden" id="id_app" value="33"> <input name="accion" type="hidden" id="accion" value="ins_">
<input name="foro_fecha_comentario" type="hidden" id="fecha" value="<?php echo $fecha; ?>">
<input name="h_id" type="hidden" id="patron" value="<?php echo $h_id; ?>">
<input name="patron" type="hidden" id="patron" value="<?php echo $patron; ?>">
<input name="foro_links_id" type="hidden" id="foro_id" value="<?php echo $control->RESULTADOS[0][3]; ?>"></td>
</tr>
</table>
</form></td>
</tr>
<tr>
<td>
<?php $cuando = "links_id =" . $control->RESULTADOS[0][3] . " order by foro_fecha_comentario DESC";
$control = new select_pg(3, "foro_nombre_usuario, foro_comentario_texto, foro_fecha_comentario, foro_comentario_titulo", "formas_foro", $cuando, 4, 4, "(usuario)-(texto)-(fecha)-(titulo)", "<p><small>(fecha)</small><br><font size=\"2\"><b>(titulo)</b></font> (usuario)<br>(texto)</p>", "" ,""); ?>
</td>
</tr>
</table>
<?php } ?>
|