Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/12/2013, 09:48
andaluz7
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: relacionar una galeria de imagenes con usuarios registrado

hola gracias para insertar los temas ya esta hecho

este es donde quiero que salgan los temas relacionados con el usuario

perfil

Código PHP:
Ver original
  1. <?php  include ("acceso_db.php"); session_start(); ?>
  2. <h1>TOTULO DE MI WEB*</h1>
  3. <!--HTML5-->
  4. <!doctype html>
  5. <html lang="en">
  6. <head>
  7.     <meta charset="utf-8" /><!--compatibilidad para caracteres especiales-->
  8.     <title>Galeria de imagenes</title>
  9.     <link rel="stylesheet" href="./css/estilo.css" type="text/css" media="screen" /><!--conexion al estilo-->
  10. </head>
  11. <body>
  12.  
  13.  
  14.         <div class="ftp_area"><!--clase para el multiarchivos-->
  15.  
  16.  
  17. <? include 'acceso_db.php'; ?>
  18. [B][B]<? $perfil = mysql_query("SELECT * FROM usuarios WHERE usuario_id='".$_GET[/B]['id']."'") or die(mysql_error()); [/B]    if(mysql_num_rows($perfil)) { // Comprobamos que exista el registro con la ID ingresada
  19.         $row = mysql_fetch_array($perfil);
  20.     $usuario_id = $row["usuario_id"];
  21.     $usuario_nombre = $row["usuario_nombre"];
  22.                 $usuario_email = $row["usuario_email"];
  23.                 $usuario_freg = $row["usuario_freg"];
  24.                 $facebook = $row["facebook"];
  25.                 $twitter = $row["twitter"];
  26.                 $avatar = $row["avatar"];
  27. ?>
  28.  
  29. <html>
  30.  
  31. <head>
  32.            <title>Perfil de <?=$usuario_nombre?> | Tu web</title>
  33. </head>
  34.  
  35. <body>
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43. <div id="menu">
  44.     <a href="usuarios.php">Usuarios</a> |
  45.     <a href="acceso.php">VOLVER PAGINA PRINCIPAL</a>
  46. </div>
  47.  
  48. <h2>Perfil de <?=$usuario_nombre?></h2>
  49. <p>Email: <?=$usuario_email?></p>
  50. <p>Fecha de registro: <?=$usuario_freg?></p>
  51.  
  52. <a href="acceso.php" target="_blank"><img src="http://localhost/al/images.jpg" width="200" height="100" />
  53.  
  54.  
  55.  
  56.  
  57.  
  58. </body>
  59.  
  60. </html>
  61.  
  62. <? } else { ?>
  63.  
  64.      <p>El usuario o perfil que buscas no existe .-.</p>
  65.       <a href="usuarios.php"><button>Lista de usuarios</button></a>
  66.  
  67. <? } ?>
  68.  
  69.  
  70.  
  71. </div><!---fin de contenido-->
  72.     </div>
  73.    
  74.    
  75.     <div class="barra"><center>
  76.  
  77. <br>
  78.  TITULO DE LA WEB
  79.     </div>
  80.     </div><!--fin del englobe-->
  81.  
  82.  
  83. </body>
  84. </html>


tengo que hacer un select a la tabla temas y relacionarlo con el usuario no es asi
gracias