im pulling rows of data from mysql and showing it on screen using php. One field for each record is a URL. I was wondering if there was a way to code it so that it actually became an active a href that people can click on.
here's a bit of the code.
echo "<br>";
echo $row['website'];
echo "<br>";
'website' shows the domain data from mysql
i was thinking something like
echo "<a href= xxxxx
prior to the $row['website']; and closing the a tag after that line but I dont know the code.
thanks in advance!