Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/09/2004, 08:15
Avatar de incorpusmorte
incorpusmorte
 
Fecha de Ingreso: septiembre-2004
Mensajes: 1
Antigüedad: 19 años, 7 meses
Puntos: 0
De acuerdo Prueba con esto...

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Pagina nueva 1</title>
</head>
<?php
include ("infobdc.php");
$link = mysql_connect($host, $userp, $pass);
mysql_select_db("$dbname",$link) or die (mysql_error("No se seleccion la base de datos"));
$_pagi_sql = "select * from noticias order by Fecha desc,Hora desc";
$_pagi_cuantos = 5;
include("paginator.inc.php");
while($row = mysql_fetch_array($_pagi_result)) {
echo "
<body>
<table width=413 border=0 cellspacing=0px>
<tr>
<td width=411 height=23 background=noticias.gif><font size=2 face=Arial, Helvetica, sans-serif>+
$row[Titulo]</font></td>
</tr>
<tr>
<td height=60 background=cuerpo-noticias-centro.gif>
<p><font size=2 face=Arial, Helvetica, sans-serif>Texto</font></p>
<p>asdasndasd</p>
</td>
</tr>
<tr>
<td height=22 background=cuerpo-noticias-inferior.gif>asdasdasd</td>
</tr>
</table>
</body>
";
}
?>
</html>