View Single Post
  #5 (permalink)  
Old 01-21-04, 10:28 AM
jason.lafferty jason.lafferty is offline
Newbie Coder
 
Join Date: Jan 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Figured it out (must be getting there slowly)

printf("<b>Band:</b> %s<br>\n", mysql_result($result,0,"Band"));

grabbing the 1st result

just changed to :-

printf("<b>Band:</b> %s<br>\n", $Band));

Working fine now.
Reply With Quote