Well sorta like that but, if I have three of them like :
one
two
three
I need to be able to each in it's own link
When I just do it the below way, it is not working..
$query="SELECT word, cost from kwords ORDER BY cost DESC LIMIT 100";
$result = mysql_query($query) or die("Query failed");
while ($myrow = mysql_fetch_array($result)) {
?>
<a href='list.php?kword=<? echo nl2br($myrow["word"]);;?'><font size=\"2\"><? echo $myrow["word"]?></font></a> = <? echo $myrow["cost"]?><BR>
<?
}
?>
I get one link that looks like this... one<br />two<br />three
I should get 3 links, one of each of those words in each..
And yes, the same way it is added thru textarea