www.webdeveloper.com
Recent Articles
  • Finding Slow Running Queries in ASE 15
  • A More Advanced Pie Chart for Analysis Services Data
  • Adobe AIR Programming Unleashed: Working with Windows
  • Performance Testing SQL Server 2008's Change Data Capture Functionality
  • The ABC's of PHP: Introduction to PHP
  • How to Migrate from BasicFiles to SecureFiles Storage
  • Why the Twitter Haters Are Wrong
  • User Personalization with PHP: Beginning the Application
  • Whats in an Oracle Schema?
  • Lighting Enhancement in Photoshop
  •  

    Go Back   WebDeveloper.com > Client-Side Development > HTML

    HTML Discussion and technical support for building, using and deploying HTML sites.

    Reply
     
    Thread Tools Search this Thread Rate Thread Display Modes
      #1  
    Old 06-30-2007, 11:28 AM
    • MaNiC MoE •'s Avatar
    • MaNiC MoE • • MaNiC MoE • is offline
    Future Freek WebDesigner!
     
    Join Date: Mar 2007
    Location: Jeddah (Currently)
    Posts: 157
    Angry Where FORM Go?!

    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
    Reply With Quote
      #2  
    Old 06-30-2007, 11:43 AM
    • MaNiC MoE •'s Avatar
    • MaNiC MoE • • MaNiC MoE • is offline
    Future Freek WebDesigner!
     
    Join Date: Mar 2007
    Location: Jeddah (Currently)
    Posts: 157
    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>...
    Reply With Quote
      #3  
    Old 06-30-2007, 02:51 PM
    ryanbutler's Avatar
    ryanbutler ryanbutler is offline
    Registered User
     
    Join Date: Nov 2006
    Location: Springfield, MO
    Posts: 1,383
    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.
    __________________
    Ryan Butler

    Midwest Web Design
    Reply With Quote
      #4  
    Old 06-30-2007, 10:10 PM
    ray326's Avatar
    ray326 ray326 is offline
    Got Link?
     
    Join Date: Nov 2003
    Location: Jerryville, Tejas
    Posts: 11,741
    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
    Reply With Quote
    Reply

    Bookmarks


    Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
     
    Thread Tools Search this Thread
    Search this Thread:

    Advanced Search
    Display Modes Rate This Thread
    Rate This Thread:

    Posting Rules
    You may not post new threads
    You may not post replies
    You may not post attachments
    You may not edit your posts

    BB code is On
    Smilies are On
    [IMG] code is Off
    HTML code is Off
    Forum Jump


    All times are GMT -5. The time now is 01:24 PM.



    Acceptable Use Policy


    The Network for Technology Professionals

    Search:

    About Internet.com

    Legal Notices, Licensing, Permissions, Privacy Policy.
    Advertise | Newsletters | E-mail Offers

    Powered by vBulletin® Version 3.7.3
    Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.