Page 1 of 1

FAQ in language PHP with quickly responder

Posted: Fri Sep 20, 2013 11:37 am
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

Re: FAQ in language PHP with quickly responder

Posted: Fri Sep 20, 2013 12:45 pm
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...
...