Read this article on makeing a search engine -> http://www.phpbuilder.com/columns/clay19990421.php3
You're also going to have to make a table with at least three fields (id, question, answer)
create table q_and_a (id int auto_increment primary key, question varchar(100), answer text);
after you read that article, you'll have a general idea of how it works.
good luck
mark