|
|||||||
| HTML Discussion and technical support for building, using and deploying HTML sites. |
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Well, I've been making a free website at Piczo. In one of the pages I made a feedback form, but don't know where to send the data to!
? I wanna put it in an empty (*.txt) file, but where could I upload it, I tried FileUPYours and 4Shared, but it didn't work!! Plz help me! thx |
|
#2
|
||||
|
||||
|
the following is the source code of the form :
HTML Code:
<h1>Feedback Form</h1> <h2>Please fill-out this form freely</h2> <table id="frmLtb" name="Form_Layout_Table" title="Please write everything you wanna tell me in the Feedback Form" border="0" frame="void" width="100%" cellpadding="3" cellspacing="3" style="background-color:navy ; border-style:double ; border-color:#FFFF00 ; background-attachment:scroll"> <form name="Feedback_Form" action="192.168.1.64/Feedback Results.txt" method="get"> <tr> <td class="label"><label for="Name" style="color:white ; font-family:Arial ; font-weight:bold">Name</label></td> <td class="field"><input type="text" name="Name" maxlength="25" size="45" style="background-color:#000000 ; color:#91CEFF ; font-weight:bold ; border-style:inline ; border-color:yellow ; direction:ltr ; font-family:"></td></tr> </tr> <tr> <td class="label"><label for="Nickname" style="color:white ; font-family:Arial ; font-weight:bold">Nickname <small>(OPTIONAL)</small></label></td> <td class="field"><input type="text" name="Nickname" size="45" style="background-color:#000000 ; color:#91CEFF ; font-weight:bold ; border-style:inline ; border-color:yellow ; direction:ltr ; font-family:"></td> </tr> <tr> <td class="label"><label for="Gender" style="color:white ; font-family:Arial ; font-weight:bold">Gender\Sex</label></td> <td class="field">| Male <input type="radio" name="Gender" value="Male"> | Female <input type="radio" name="Gender" value="Female"> |</td> </tr> <tr> <td class="label"><label for="Age" style="color:white ; font-family:Arial ; font-weight:bold">Age</label></td> <td class="field"><input type="text" name="Age" maxlength="2" size="2" style="background-color:#000000 ; color:#91CEFF ; font-weight:bold ; border-style:inline ; border-color:yellow ; direction:ltr ; font-family:"></td> </tr> <tr> <td class="label"><label for="E-mail" style="color:white ; font-family:Arial ; font-weight:bold">E-mail Address</label></td> <td class="field"><input type="text" name="E-mail" style="background-color:#000000 ; color:#91CEFF ; font-weight:bold ; border-style:inline ; border-color:yellow ; direction:ltr ; font-family:" style="background-color:#000000 ; color:#91CEFF ; font-weight:bold ; border-style:inline ; border-color:yellow ; direction:ltr ; font-family:" size="45"></td> </tr> <tr> <td width="100%" colspan="2"><hr class="small"></hr> </td></tr> <tr> <td class="label"><label for="Type" style="color:white ; font-family:Arial ; font-weight:bold">Feedback Type</label></td> <td class="field"><select name="Type" style="background-color:#00000 ; color:navy"> <option value="Compliment">Compliment</option> <option value="Comment">Comments</option> <option value="Complaint!">Complaint!</option> <option value="Suggestion">Suggestion</option> <option value="Problem">Report a Problem in the Site</option> </select></td> </tr> <tr> <td class="label"><label for="Feeedback" style="color:white ; font-family:Arial ; font-weight:bold">Feedback</label></td> <td class="field"><TEXTAAREA name="Feedback" reows="15" cols="100%" style="background-image:url('http://www.fileupyours.com/files/81720/0841.jpg') ; background-attachment:scroll ; border-style:ridge ; border-color:#F6FF00 ; color:brown ; background-repeat:repeat ; text-indent:1/2cm ; white-space:wrap"></TEXTAAREA></td> <tr> <td width="50%"><input type="reset" value="Reset Fields" style="background-color:#000000 ; color:#FFFFFF ; text-align:center ; text-decoration:italic ; font-weight:800 ; width:100%"></td> <td width="50%"><input type="submit" value="Submit Feedback" style="background-color:#000000 ; color:#FFFFFF ; text-align:center ; text-decoration:italic ; font-weight:800 ; width:100%"></td> </tr> </tr></form> </table> <hr class="big"> Thank you, for more information, please message me at <a href="mailto:manic_moe@hotmail.com?subject:Feedback%20Request" target="_blank">My E-mail</a>... |
|
#3
|
||||
|
||||
|
You want to use a method of post in this situation. If people type too much information into your form fields, you run the chance of exceeding the maximum number of characters allowed in the address bar.
You'll need to determine if your current host provides any script to write the results of the form submission to a text file. |
|
#4
|
||||
|
||||
|
Also your HTML is invalid. Move the <form></form> tags outside of the table.
__________________
Help Save Ana Why use Web Standards: Zeldman How (new): Castro How (experienced): Cederholm If you can only get one book and you're already HTML savvy then this is it: stylin' with CSS: A Designer's Guide Charles Wyke-Smith New Riders "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." Brian W. Kernighan |
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|