Hi
I am trying to loop the contents of a recordset to pass through the 'mailto:'
command...the recordset I have set up works fine and loops the records as they are displayed in a table.
But I need the 'email' column to send it's data so when you use 'mailto:' it sends ALL the email addresses to Outlook etc instead of just the first record in the db.
ie: email1@domain.com, email2@domain.com, email3@domain.com, etc....
The mailto: I set up works but only with the first record....
<a href="mailto:<?php echo $row_rsDealers['email']; ?>">
Maybe I need to use some javascript?.....but can't find anything that suits???
BTW...this site is just an internal intranet and does not have online forms to fill in
Any help would be appreciated
Thanks