in reply to scrolling list

That really depends. Are you trying to do this in a cgi form, tk, wx, win32::GUI, or ...?
but, your question's really about getting information from fetchrow_array; here's a short script to get you started.
use DBI; my $table_name = "perl"; my $db_name = "system"; my $user_id = "doc"; my $password ="your password here"; my $interface = "DBI"; my $row = ( "$db_name ('$table_name$user_id $interface')"); eval $row;