Forum Moderators: mack
If you do have the basic form up and running, then like I said, what script are you using for the submission form? One that iPower provides? How did you set it up? Only you are familiar with what you're doing, unless you tell us we can only guess.
Maybe the question I should be asking is, what do I need to learn to add functinality to the form I have designed [contact form], have it show a "thank you" page when it is sumitted and what do I need to know to create a file upload page so users can uploadfiles to my server?
I'm searching the internet for answers, butthere are so many of them, I really don't know what I should be focusing on to learn how to do these things.
Direction...that's what I need...oh, and questions like yours.
thanx
what do I need to learn to add functinality to the form
What you need is a script - a form handler - that will process the form.
This could be a Perl script, a PHP or ASP one or something else, but it is the script that does the work - sends the submission to you, perhaps an acknowledgement to the person who submitted it and creates custom thank you pages and so on.
Most forms start with a tag something like this:
<form action="/directory/form-handler.ext" method="post">
which causes what ever is entered into the form to be sent to form-handler.ext (whatever it real name is) to be processed.
Many hosts provide a form handler for users, some even insist that you use theirs, since there is potential for abuse if a badly constructed handler is used. If yours doesn't, have a look at hotscripts.com, where you will find hundreds, many of them free.
The form handler will come with detailed instructions about how to use it and set it up.
Hope this makes things a little clearer for you. :)