to the View Feedback section to select a month of comments.\n"; mysql_close($link); } else { $comment_content = ""; while($row = mysql_fetch_array($res)) { $date = $row["date"]; $comment = $row["comments"]; // Construct the content string for this record $comment = preg_replace("/\n/", "
", $comment); $comment_content .= "Posted $date.\n
$comment

\n"; } $content = preg_replace("/COMMENTCONTENT/", $comment_content, $content); print $content; mysql_close($link); // Get the last modified time for this file clearstatcache(); $mtime = filemtime($filename); $modified = date("d F Y h:i:s A", $mtime); // Finish the index page with some php to give the last // time this page was modified (overkill...) print "
Modified Last: $modified
"; } } else { print "Sorry. You tried querying without putting any data in. Please go back to the View Feedback section to select a month of comments.\n"; } ?>