FAQ in language PHP with quickly responder

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
LCLC78
Forum Newbie
Posts: 1
Joined: Fri Sep 20, 2013 11:22 am

FAQ in language PHP with quickly responder

Post by LCLC78 »

Hello,

I need make an FAQ in language PHP with quickly responder that involves categories and subcategories. So, when someone shearch in FAQ about one doubt, are provided one set of suggestions that are related wiht the doubt. This process is repeated until no further information related with te doubt.

I need something of this kind:

http://www.coisas.com/contact_us,page,content_pages

Can someone point me in the right direction for this? help me please

Thanks
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: FAQ in language PHP with quickly responder

Post by requinix »

That is a set of questions and answers with categories.

Code: Select all

faq category

id | name
---+-----------------
1  | Outro assunto
2  | Conta suspensa
3  | Eliminar registo
...


faq entry

id | category | question                  | answer
---+----------+---------------------------+----------------
1  |        1 | Ja consultou a "Adjuda"?  | Descreva-nos...
2  |        2 | Tenho a conta suspensa... | Consulta...
3  |        2 | Tenho a conta suspensa... | Para saber...
4  |        2 | Outra questao             | Se ainda tem...
...
Post Reply