How do I store and extract text with links in it in a database
I am looking at creating a page that looks and acts like a Wiki page. I thought that one way would be to have a database containing the text and another holding the result that would appear when a link is clicked
I have no difficulty in processing links from dynamic sources, but I am struggling to work out the data structure needed to store and recover the links themselves, as they will be mixed with text that is not link text.
Example as it should be reproduced (the links are dummies and will fail)
Little Jack Horner sat in a corner eating his curds and whey.
Each link would point to a record in my database containing the required data.
How do I store the line above in my database in a such way that it can be pulled out and displayed with a minimum of processing?
