Quote:
Originally Posted by
Benedizione
However, I am receiving very rude feedback from the tech support of dynamic drive. I may be forced to leave this forum altogether. Maybe they should send me to prison for having used "a font".
Please don't take offense. People don't like when you over-use fonts/formatting (Based on your previous post, you probable made the font size bigger? Those things should usually be used sparingly). It's nothing personal--we want you to stay on DynamicDrive-- it's just a reminder to keep posts simple.
BTW, do you mean pulling the comments back out of the database? That would take a MySQL Query.
Code:
$rows = MySQL_Query("SELECT * FROM comments");
while($row = MySQL_Fetch_array($rows)){
echo $row['comment'];
}
(that's a very basic example)
Edit: If you want to display the results from newest to oldest, you need to add another column to your table, either a time of an ID to sort by.