Ver Mensaje Individual
  #12 (permalink)  
Antiguo 26/11/2009, 10:27
estaestuhinchada
 
Fecha de Ingreso: agosto-2009
Mensajes: 103
Antigüedad: 14 años, 7 meses
Puntos: 3
Respuesta: Ultimos post en mi web

Código PHP:
<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Pagina nueva 1</title>
</head>

<body>
<?
// phpBB :: MOSTRAR ULTIMOS 10 MENSAJES

$con=mysql_connect("localhost"vz000215_new, ********);
mysql_select_db("vz000215_comunidad",$con);

// Cantidad de post a mostrar y prefijo de las tablas
$ultimos 10;
$prefijo "phpbb_";

// Consultas a la base
$result_mensaje=mysql_query("select * from $prefijo"."topics order by topic_id desc limit $ultimos",$con);
while(
$mostrar_m mysql_fetch_array($result_mensaje)) {
$topic=$mostrar_m["topic_id"];
$forum_id=$mostrar_m["forum_id"];
$result_foro=mysql_query("select * from $prefijo"."forums where forum_id like $forum_id",$con);
$mostrar_f=mysql_fetch_array($result_foro);
$forum_name $mostrar_f["forum_name"];
mysql_free_result($result_foro);
?>
<font face="verdana" size="1">»&nbsp;<a href="http://www.estaestuhinchada.com.ar/comunidad/viewtopic.php?t=<?=$topic;?>" target="_blank"><? echo $mostrar_m["topic_title"]; ?></a><br />&nbsp;&nbsp;en <i><b><?=$forum_name;?></b></i></font><br />
<?
}
// Cerramos conexión
mysql_free_result($result_mensaje);
mysql_close($con);
?></html>
Este el codigo completo de toda la pagina.. esta en html.. obviamente lo unico que correji es la contraseña..