Small questions first:
Yes you can use text file, though I think JSON is simpler. It's human-readable when pretty-printed, unambiguous and safe from special characters.
You can have your own simple RESTful database, you can use some large app site (google sites / fb / etc), you can even send emails back and forth, that's up to you.
Client-side you want HTML5.
However, the most important aspect (*) of your system is usability for the most users -- survey takers.
Consider this horrible example:
What is your age:
[ ] between 1 and 5
[ ] between 6 and 10
etc.
Then consider this, an absolute survey killer:
How much do you agree with the following:
not at all / not really / neutral / somewhat / a lot
My cat likes red [ ] [ ] [ ] [ ] [ ]
Eggs are better than ham [ ] [ ] [ ] [ ] [ ]
I don't take a bus [ ] [ ] [ ] [ ] [ ]
I hate politics [ ] [ ] [ ] [ ] [ ]
Fish is expensive [ ] [ ] [ ] [ ] [ ]
Pollution is good [ ] [ ] [ ] [ ] [ ]
Manager helped me a lot [ ] [ ] [ ] [ ] [ ]
Repairman was not helpful [ ] [ ] [ ] [ ] [ ]
Supervisor knows his shit [ ] [ ] [ ] [ ] [ ]
Salesmen were friendly [ ] [ ] [ ] [ ] [ ]
Office smells and looks nice [ ] [ ] [ ] [ ] [ ]
First, your users are overwhelmed with choices, and many give up
Then some confuse which box refers to which question
Then some don't get double negation "do not agree with repairman not helpful"
Eventually the only users who complete your survey are those who picked random answers and a few who have really strong feelings. Either way the results are pure rubbish -- randomness mixed with exaggeration.
Now consider a better designed survey interace:
What was your impression?
[smiley]<====[slider]====>[angry]
How far do you live from our store?
[house]<=====[slider]=====>[mountain]
# slider icon changes as you drag it:
# house/block/road/highway/city/mountain
When your surveys are quick and to the point, you will get a lot more answers.
There's a lot more that goes in a good survey, e.g. questions should not be suggestive (how much did you like our service?), questions have to be unambiguous (how is our new section?), questions cannot be too personal (when did you child die?) etc. I guess many books are written on this subject, but you cannot easily enforce this in your system.
(*) I'm assuming average users who choose to participate in your surveys, I discount cases where users are forced to participate, e.g. school exams.