Ver Mensaje Individual
  #22 (permalink)  
Antiguo 22/04/2008, 15:06
Avatar de flanagan44
flanagan44
 
Fecha de Ingreso: abril-2004
Mensajes: 182
Antigüedad: 20 años, 4 meses
Puntos: 2
Re: Consultar varias bases de datos para una sola web

Haber si encontramos el error jejejejje

prueba este codigo:

Código PHP:
<?php
include_once 'bd.php'
?>

<style type="text/css">
<!--
.Estilo1 {color: #333333}
-->
</style>
    <table border="0" cellspacing="0" cellpadding="5" width="100%" style="border-left: 1px solid #c7c6c5; border-right: 1px solid #c7c6c5; border-bottom: 1px solid #c7c6c5;">
      <!--DWLayoutTable-->
      <tr><td colspan="3" background="imagenes/fondoverdeenca.gif" style="border-bottom: 1px solid #e9e9e9; color:#ffffff;"><b>ÚLTIMOS JUEGOS AÑADIDOS</b></td>

      </tr>


<?php

$connexion
=connectarbd();  //conectas a la BD 1
$consulta=" SELECT id,title,section FROM sp_games WHERE published = '1' ORDER BY id DESC";
$resultat=mysql_query($consulta);
while(
$fila=mysql_fetch_array($resultat))
{
       
//Codigo que necesites
       
$bgcolor = ($bgcolor == "#ffffff" "#e9e9e9" "#ffffff");
       echo 
"<div style='padding: 3px; background-color:".$bgcolor."'>";
       echo 
$fila['section'];
       echo 
": <a href='gamedetails.php?id=".$fila['id']."'>".$fila['title']."</a>";
       echo 
"</div>";
}

 
mysql_close($connexion);//cierras la conexion a la BD 
?>
   <tr>
      <td height="0" colspan="2" bgcolor="#ebebeb" style="padding: 3px;">
        <div style="padding: 3px; text-align: center;">
            <a href="games.php">Ver Juegos</a> |
            <a href="search.php">Buscar juegos</a>  
        </div>      
      </td>
   </tr>
</table>
a parte despues de
Código PHP:
$consulta=" SELECT id,title,section FROM sp_games WHERE published = '1' ORDER BY id DESC"
agregale:
Código PHP:
echo $consulta
y con la linea que te de pruebala en tu MySql, haber que te devuelve

si no te devolviese bien los resultados prueba de sacar las comillas al 1 de la consulta, que si es un Integer no harian falta.

Haber si hay suerte