View Single Post
  #2 (permalink)  
Old 11-19-03, 08:56 PM
YourPHPPro's Avatar
YourPHPPro YourPHPPro is offline
Community VIP
 
Join Date: Aug 2003
Posts: 430
Thanks: 0
Thanked 0 Times in 0 Posts
PHP Code:

echo "<A HREF=\"$row['Address']\">$row['Name']</A> - $row['Description']<br />\n"
Try this:

PHP Code:

echo "<A HREF=\"{$row['Address']}\">{$row['Name']}</A> - {$row['Description']}<br />\n"
Reply With Quote