tony, regarding problem one, it looks like there is a problem in the code near: for ($g = 0; $g < $num_lyrics; $g ++) {
try doing: for ($g = 0; $g <= $num_lyrics; $g ++) { As for problem two, it looks like you have your color variable set in the for loop thereby resetting the color variable to 1 with each pass: for ($g = 0; $g < $num_lyrics; $g ++) { $color = 1; if ($color == 1) { $rowcolor = "#DFDFDF"; $color ++; } else { $rowcolor= "#FFFFFF"; $color --; } ... } "Tony Harrison" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > OK, im having some minor problems with my site. > In artist.php (http://members.lycos.co.uk/ajohnh/artist.php - Source at: > http://members.lycos.co.uk/ajohnh/source/artist.txt) If for example you view > lyrics by Weird Al Yankovic > (http://members.lycos.co.uk/ajohnh/artist.php?id=1) You'll see that the > bottom lyric (The Sage Begins) does not display. Now when you sort them by > views (http://members.lycos.co.uk/ajohnh/artist.php?id=1&sortby=views) you > will see that err, The Sage Begins is there, and the other one can no longer > be seen. PLease examine my source and tell me whats wrong. And another thing > about that page. The rows are meant to be alternating between #DFDFDF (grey) > and #FFFFFF (white) - why the hell are they all grey?!?!?!!? It worked fine > in index.php - source at http://members.lycos.co.uk/ajohnh/source/index.txt > > > Please help !!!!!! > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php