Hello i am kinda new to php and mysql and i have made a guest book script to get use to it but i want to make a fied from the database a mailto link i have put a snipet of the code below if anyone can help me. thanks 🙂
// Display the text of each name, email and comment in a paragraph on a new line and a mailto link at the email
while ( $row = mysql_fetch_array($result) ) {
echo('<p>Name:' . $row['name'] . '<br>Email:' . $row['email'] . '<br>Comment:' . $row['comment'] . '</p>');
}