when i test the code below on my localhost it will display the name of the url which i select from my database but while online when move my mouse to the link it will display my domain name and the link eg http//:mydomainname.c om/www.thelink.com how can i fix these.
Code:
$result = @mysql_query("SELECT * FROM user");
$line = mysql_fetch_array($result);
$dweb = $line[web];
$dbuz = $line[title];
echo"<a href= '$dweb' target = '_blank'>$dbuz</a>";
Comment