Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Please look at the image: enter image description here

This is a simple forum page. Anyone can open as well as publish a new topic, if he/she just got registered. But now I want to control my users. I want if anybody open a new topic, it won't be published directly in my website. First it has to come to admin to be approved. But I can't find any clue to do it. Just share with me the concept, I will do it myself.

share|improve this question
Where should I learn this thing? I have no idea. – Shahriar Dec 27 '12 at 10:04
How could we possibly know how to operate your forum software without even knowing what forum software you are using?! – David Schwartz Dec 27 '12 at 10:05
I am not using any software. I just take input by a simple html form, then store it in mysql database. Then just show them by calling from database. – Shahriar Dec 27 '12 at 10:08

closed as not a real question by juergen d, AndreKR, nos, David Schwartz, Jack Dec 27 '12 at 10:23

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 3 down vote accepted

You can simply add an approved flag in the database which is set to 0 by default and once approved is set to 1. Only approved topics are listed (WHERE approved = 1) and editable. And unapproved topics are listed int the admin menu which can either accept them or not (editing that flag in the database).

share|improve this answer
That's the solution what I wanted. Thanks. – Shahriar Dec 27 '12 at 10:12

Not the answer you're looking for? Browse other questions tagged or ask your own question.