Hi,
I want to make a site that allows people to submit short answers to 8 questions or so. I then want to be able to display the results in a table format on a website with around 8 columns across (corresponding to each question) and and one row for each user entry, ideally displaying between 10 and 25 results per page. Is there a way to do this using Drupal or should I not even start there? Basically, like a less sophisticated version of Glassdoor.com (see: http://www.glassdoor.com/Salaries/plumber-salary-SRCH_KO0,7.htm) but with more columns. Are there any examples of something like this done with Drupal? Ideally one would be able to mouse over longer answers to see them in their entirety without clicking on the entry for further information.
Many thanks in advance!

Comments

vm’s picture

http://drupal.org/project/views module to generate your lists from data pulled from the database
the data will be entered into the database using a form (content type) which you generate

mouseovers - see beautytips and other similar modules or write your own with jquery

wompwomp’s picture

Thanks for the tips!