08-20-2009, 02:13 PM
|
#6 (permalink)
|
|
The Wanderer
Join Date: Aug 2009
Posts: 11
Thanks: 1
|
Yep your missing one thing:
$id = $_GET['id'];
$queryget = mysql_query("SELECT * FROM comments");
CHANGE TO:
$id = $_GET['id'];
$queryget = mysql_query("SELECT * FROM comments WHERE id = '$id'");
That will make sure it only selects that comments ...
Not every comment which loops through and just outputs the last on all pages.
|
|
|
|