Can you use

<a href="<? echo $address; ?>"> or is this bad coding?


"René moonen" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Use the escape character to output double quotes
>
> echo '<a href=\"$address\">';
>
> René
>
> Martin Johansson wrote:
>
> >Is there a way to express php variables inside an echo ' '.
> >
> >I want something like this to work:
> >
> >echo '<a href="$address">';
> >
> >I know I can write it like this:
> >echo '<a href="';
> >echo "$address";
> >echo '">';
> >
> >But Its to hard to read the code like this.
> >/Martin
> >
> >
> >
> >
>
>



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

Reply via email to