View Single Post
Old 12-12-2012, 04:00 PM   PM User | #2
tracknut
Regular Coder

 
Join Date: Aug 2006
Posts: 906
Thanks: 4
Thanked 212 Times in 211 Posts
tracknut is an unknown quantity at this point
Looks like just the echo is wrong. It should be:
PHP Code:
echo "<a href=".$row['lnktxt'].">".$row['dsptxt']."</a>"
There are lots of ways to deal with the various quotes. Keep in mind just output text (like <a href) needs quotes around it (i.e. to make it a string).

Dave
tracknut is offline   Reply With Quote