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> 

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

Reply via email to