For example I'll rephrase the question:
while($row = mysql_fetch_array($result))
{
include (“$row['textfiles']”);
Looking for the proper syntax for the include function here or comparable that would do the following:
so that if the value in the textfiles field for any row was sometext.txt, the include function would then display the contents of sometext.txt;
would like a different text file to be displayed depending upon which row was being looked at. This is when the text file is very long and so maybe it is better to put the lengthy text into a file than directly input the text into the database.