hello everyone.
I inserted a record with url(for example: http://www.yahoo.com) into mysql server, and then the url will display a bold url to open new window. It did not work. Look at this link http://kg.out-force.com/listeopp.php (a big list, search aftter www) for more understandable. Thanks
<?php include("dbconnect.php"); ?>
<?php
$result = mysql_query("select * from media");
if ($result)
{
while ($row = mysql_fetch_array($result))
{
print "<b>Tittel_ID:</b>";
print "<b>Nettlink:</b>";
print "<a target=_blank href='$row[Nettlink]'>$row [Nettlink]</a>";
print "<br>\n";
print "<br>\n";
}
mysql_free_result($result);
}