Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Business

What pro lang will I need to create a web app that holds a personal profile based on a test taken and other information?

I would like to know what are some things I should look into (see synopsis below)... I want to make sure I'm heading in the right direction. I think I can accomplish my goal with knowledge of html, javascript, css, and maybe php; but I'm not sure. If you need additional information, please let me know.

Synopsis of what I'm trying to do:

I would like to build a web application that will allow companies to register employees and perform the following tasks: take a test that will post a summary of their results, a section that will allow them to insert information based on their career, and another section that will help them assign goals. The first time someone register/login, I would like to walk them through the steps mentioned previously. But after the initial items are complete, I would like the person to be able to return to the site and view a profile of the information.

2 Answers

gant allen
gant allen
7,089 Points

You could do it in several languages. I would stick with JavaScript and learn it well. The reason why..... With JavaScript you can do the front end work, turn around and do the server side work as well. You wouldn't have to learn another scripting or programming language. You are still going to use a database of some sort. Although you can get around with not using a database, and simple text file, but that can be a major head ache and less secure. Using Mongo DB as the database to store the info and JavaScript to retrieve the info. There are other databases that you can access as well. This is just my thoughts on the issue :) Have a wonderful day.

Thanks, Gant! I appreciate the quick response. Your response confirms some of the information I read. I will continue to stick with javascript.