Righty, I have a field in a mysql database that contains some links, I need these links to be formatted in html on a separate row in a table although they are contained in the db as one.
output something like this
<tr> link one </tr>
<tr> link two </tr> etc..
It is stored in the DB in plain HTML with a <BR> tag between the links.
For example
<a href="link1"> link one </a> <br> <a href="link2"> Link two </a>.
So the <br> tags need to be striped, I guess this is what could be used to strip the data one by one, just need to know how to do this. Thanks![]()





Bookmarks