Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to create a Questionaire website 1

Status
Not open for further replies.

golcarlad

Programmer
Nov 23, 2004
232
GB
I am a programmer in VB, some C and Java, but havnet done much website design. I want to design a website that is basically a questionaire.
1) Say 10 questions.
2) Click a radio button 1-5 for each question.
3) Store results in some kind of database or csv file.

What kind of software and technologies would I need to make a website such as this work?

Many thanks
Simon
 
Any server side scripting language such as PHP, ASP or ColdFusion. Combined with a database such as MySQL, MSSQL or Access (not ideal for anything other than tiny sites).

Personally I would use PHP and MySQL.
Create forms in (X)HTML.
Use PHP to store the data collected by those forms in a suitable table structure within the MySQL database.

Foamcow Heavy Industries - Web design and ranting
Toccoa Games - Day of Defeat gaming community
Target Marketing Communications - Advertising, Direct Marketing and Public Relations
"I'm making time
 
Hey thanks for that Foamcow, a small question, when choosing who to host the website, what server-side technologies must they have in order for this to work to the spec you have outlined. Plus I dont get how MySQL works server side? Does the web host have a MySqL database or can you upload a self-contained MySql database plug-in type thing (these are total guesses??!!)

Many thanks
 
Choose a host that supports the server side language you wish to use.

Apache webservers tend to support PHP and MySQL

Windows based servers support ASP (some also support PHP, but with some foibles).


Yes the host runs a MySQL server and you will have access to one or more databases in which you can create your tables.

Note though, that not all hosts offer server side scripting languages and/or database facilities. You need to establish what you need to do and how you will do it before you find a suitable host.

Foamcow Heavy Industries - Web design and ranting
Toccoa Games - Day of Defeat gaming community
Target Marketing Communications - Advertising, Direct Marketing and Public Relations
"I'm making time
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top