View Single Post
Old 08-30-2009, 11:25 AM   #11 (permalink)
TheOnly92
The Contributor
 
Join Date: Mar 2009
Posts: 49
Thanks: 0
TheOnly92 is on a distinguished road
Default

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.
TheOnly92 is offline  
Reply With Quote
The Following User Says Thank You to TheOnly92 For This Useful Post:
tearsofthesun (08-30-2009)