I have a php page listing all info entered into mysql. One of the fields is an email address, I would like the address to be mailto:
All I could think of is
<a href= "mailto:?id=<?php echo $row_rsBday['id']; ?>"<?php echo $row_rsBday['email']; ?> </a></p>
No luck with that
Any Ideas?
Thank You