On Wed, 5 Mar 2008 19:57:16 +0000 (UTC), "databell"
<webforumsuser@macromedia.com> wrote:
>That didn't work. If you now go to
>
http://www.basinstreetrecords.com/prss/albums.php?artist_id=4
you'll just see
>the first name in the artist_id and then the first album
over and over again
>over 20 times. Not at all what I want.
Oops. Sorry, I missed changing it in the second place it
needed to be
changed. Here is the code I originally suggested:
<?php do { ?>
<p><?php echo
$row_rsPressAlbums['downloads_album']; ?></p>
<?php } while
($row_rsPressArtists=mysql_fetch_assoc($rsPressAlbums));
?></td>
Change that to:
<?php do { ?>
<p><?php echo
$row_rsPressAlbums['downloads_album']; ?></p>
<?php } while
($row_rsPressAlbums=mysql_fetch_assoc($rsPressAlbums));
?></td>
Gary