I have the following code:
echo "<li style='font-size:10pts;' class='news-item'>
<a href='$link'>(".date("D, d M Y", strtotime($date)).") $description</a>
</li>";
and the database field value for link is:
www.yahoo.com
Now when the echo statement above is executed, and I click on the link shown on page, it doesn't go to www.yahoo.com, but rather to www.mydomain.com/www.yahoo.com. This of course results in not found 404. How can I solve this please?