yo lo haría así:
   Código PHP:
   
<link href="../Stylesheet/general.css" rel="stylesheet" type="text/css">
<?
include('../acceso_db.php');
$sql = "select * from albums WHERE usuario_id='" . $_SESSION['usuario_id'] . "' order by id DESC";
$datos=mysqli_query($conexion,$sql); //conexion es la variable donde guardaste la conexion, segun en tu caso acceso_db.php
?>
<table width="76%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="21%"><div align="center"><img src="{<?=$imagen?>}" width="150" height="150"></div></td>
    <td width="79%" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td class="rotulo"><?=$nombre?></td>
      </tr>
      <tr>
        <td><table width="100%" border="0" cellspacing="0" cellpadding="0">
        <?php
        while ($reg=mysqli_fetch_array($datos){
          $dato1=$reg["Elnombrequetienes en la tabla"];
          //continuas haciendo lo de arriba para tus campos
          echo "<tr>
                  <td>
                      Nombres
                  </td>
                </tr>
                <tr>
                  <td>
                      $dato1 
                  </td>
                </tr>" 
        }
        }
        ?>
          <tr>
            <td><?=$nombre2?></td>
          </tr>
    <? } ?>
         
        </table></td>
      </tr>
    </table></td>
  </tr>
</table>
<? } ?>