Using the Simple perl database in Bytes, I have defined my database as follows:
I am using check boxes to choose who I will send an email too, and I want to use the email address, but after 10 hours of trying all what I can think of, I'm still stuck. This is probably a simple question, but its got me stumped.
Code:
%fields = ( ID => [0, 'Link ID:', 'text'], UserName => [1, 'UserName:', 'text'], Password => [2, 'Password:', 'text'], Level => [3, 'Level:', 'drop'], FullName => [4, 'Full Name:', 'text'], Email => [5, 'Email Address', 'text'], Location => [6, 'Location', 'text'], );
Comment