I run a non-web Intranet for my company and 75% of the employees don't have email accounts. I need a form and survey that they can fill out online (local) and send it to me. Has anyone created or know where I can find the script or software that will do this? I thought perhaps Perl could?
asp
I'm now looking at message boards or maybe some sort of form that will leave the question/answer on the page for all to see. I think I'm in way over my head, ha!
I'd suggest set up a webserver on the Intranet (using one of the opensource Web servers). Then use perl or php to create a simple form. It could store responses in a simple comma separated value file for later analysis using MS Excel, or you could use a MySql database. If you want the answers left on the page for all to see, you could program it that way, or you don't have to. I don't know if there is a free script to do this, but it is not complex, so your IT team could give it a go, or you could get someone to do it.
(You will need to think about how to handle multiple responses from the same employee... Have their last response override their previous one, vs only allow them to respond once. Also you will have to think of how you will validate each employee; or perhaps that doesn't matter and you trust that no-one will try to rig the system)
Shawn