08-30-2009, 11:25 AM
|
#11 (permalink)
|
|
The Contributor
Join Date: Mar 2009
Posts: 49
Thanks: 0
|
Your insert query doesn't insert the id of the page together, that's why you can't link the specific comment to the page. Try something like
Code:
INSERT INTO members VALUES ($id, '$name', '$message')
I wouldn't do this if I were you, it's better to create a new column to specify which page the comment belongs to like page_id or something like that.
|
|
|
|