* Thus wrote Creative Solutions New Media ([EMAIL PROTECTED]):
> <?php echo 'Email: '.'<A
> HREF="mailto:[EMAIL PROTECTED]">'.$row_rep_RS['repEmail'].'</A>'; ?>
> 
> Obviously this isn't working. What is the proper syntax when you have to use
> double quotes inside the tag?

I usually prefer this method, its a style choice and others might
argue using it.:

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

A lot easier/cleaner than to trying to concat and escape
everything.


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