hi there,
you really need to learn SQL in order to build upon the code i've written below, but here is an example of how to pull text from a database and place it into a text box, and a text area.
your database needs to have three fields:
id,title,content
as an example, we will just be printing the title of an article, and the article text.
first of all, we have a basic HTML page with a link, we add a variable called 'linkID' to that link so we can pull a certain record out of the database, here is what the link should look like in your page:-
so, this link is telling our script to grab the data for record number 1, in the script below you will see that we search the database and grab the record depending on this number.
print_text.php