Is it possible to place the HTML file name anyfile.html in a database field 'file' and then use the include (or some other) function to print its contents? I would like to print out a different HTML file depending on the row.
e.g. can some modification of this work?
while($row = mysql_fetch_array($result))
{
$somefile=$row['file'];
include(“$somefile”);
Thanks