Hi, I have a form that echos a row...
echo 'Your institution contact is ' . $row['lname']; echo', ' . $row['fname']; echo', ' . $row['bill_email'];
I want to add a mailto: link on the $row['bill_email']
kind of like the below code...which obviously doesn't work
echo 'Your institution contact is ' . $row['lname']; echo', ' . $row['fname']; echo', ' "<a href='mailto:.$row['bill_email']."'>Email them</a>"';
thanks