Forum Moderators: coopster
I am fairly new to php, and after quite some time have put together a little comment system. I am having trouble getting the comments to stay on the web page that I would like the posting to take place. Every time a new post is submitted, it replaces the previous post, so I am only able to view the single most recent post.
Here's a sample of the page I want the post displayed in and what I am doing:
<html>
<head><title></title></head>
<body>
<?php include "show.php"; ">
</body>
</html>
The show.php file retrieves the data from the database and outputs it using echo $variableName;. Anybody have any suggestions as to what could be causing this? I would like each post to be followed by a space and then the next post, etc. (If you need me to post more info, just let me know) Thanks!