Forum: Advanced PHP Programming
09-02-2009, 07:17 AM
|
|
Replies: 7
Views: 647
Well, both require different methods to...
Well, both require different methods to prevent...
If you need to prevent same person having multiple accounts, just check for those with same IP address. If you need to prevent same account being...
|
Forum: Advanced PHP Programming
08-30-2009, 11:25 AM
|
|
Replies: 10
Views: 750
Your insert query doesn't insert the id of the...
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
INSERT INTO members VALUES ($id, '$name', '$message')
I...
|
Forum: Advanced PHP Programming
04-03-2009, 01:49 PM
|
|
Replies: 2
Views: 662
|