Mark wrote:
How can i make this email from a database a hyperlink so it doesnt show the email address--i have tried many things but i keep getting errors. At the moment it just shows the email (no link)
thanks



<?php
//get comp_id
$query = mysql_query("SELECT * FROM comps WHERE name = '$comp_name'");
$result = mysql_fetch_array($query);

$comp_id = $result['id'];
$joinfee = $result['joinfee'];
$email = $result['email'];

?>

Administrator email[<?php echo $email;?>]</td>

Something like this?

<a href="mailto:<?php echo $email; ?>">Email the administrator</a>

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to