> How do you make a link in MySQL?
 > 
 > I tried following code were the field "geluid" contains a 
 > link to a mp3

 > while ($row=mysql_fetch_array($result))
 > {
 > echo "<tr><td>";
 > echo $row[woord_nl]. "</td><td>"
 > . $row[woord_ost]. "</td><td>"
 > . $row[betekenis_nl]. "</td><td>"
 > . $row[geluid];
 > echo "</td></tr>";
 > }

I'd do something like this:

  . "<a href=\"" . $row[geluid] . "\">" . $row[geluid] . "</a>"

To get you link - basically, just put your link into the appropriate
html tags.  If you prefer a button or something else then apply the html
you'd use and go with it.

CYA, Dave




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to