* Thus wrote Creative Solutions New Media ([EMAIL PROTECTED]):
> Sorry guys.....It think there is a bit of confusion.
> 
> I miss typed what I need to do.....
> 
> 
> <?php echo 'Email: '.'<A
> HREF=mailto:'.$row_rep_RS['repEmail'].'>'.$row_rep_RS['repEmail'].'</A>'; ?>

You should make sure to quote your html values ( href="value" ), it
will lead to trouble if you don't.

I would still do it like this:

Email: <a href="mailto:<?php echo $row_rep_RS['repEmail']?>">
  <?php echo $row_rep_RS['repEmail']?></a>



Curt
-- 
"I used to think I was indecisive, but now I'm not so sure."

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

Reply via email to