Pretty simple way would be when you create the content table add a field like APPROVED int(1) then when the content is first created, set it to 0. When it is approved by the administrator set it to 1.
Then when you show results use "Where (APPROVED = '1')" in your SQL statement.
Again, this is a simple solution.
MikeJ