|
|
<%
$query="SELECT
c.texto,
c.foto,
n.titular,
n.subtitular,
c.id_news
FROM
news as n,
comentario as c,
seccion as s
WHERE
s.id_seccion= '$sc' and
n.id_seccion=s.id_seccion and
n.id_news=c.id_news AND
c.publicar='S' AND
TO_DAYS(now())>=TO_DAYS(c.fecha_inicio) AND
TO_DAYS(now())<=TO_DAYS(c.fecha_fin) AND
INSTR(c.id_tipo_ubicacion,'5') > 0
ORDER BY
c.orden ASC";
$table->sql_query($query);
while($datos=$table->sql_fetch_row()) {
$texto=$datos[0];
$foto=$datos[1];
$titular=$datos[2];
$subtitular=$datos[3];
$nt=$datos[4];
%>
<%
if ($foto){
%> vspace="4" hspace="4"> <%
}
%> |
<%//echo chop(substr(strip_tags($texto),0,150));
echo chop(substr(strip_tags($texto),0,400)) %>
Más información
|
<%
}
%> |
|
|