my understanding is that you could write it like this:

<? echo '<a href="'.$address.'"'; ?>


-----Original Message-----
From: Martin Johansson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 25 June 2002 5:25 PM
To: [EMAIL PROTECTED]
Subject: [PHP] function echo ' ' 


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


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

Reply via email to