HTML - Validating Form Table For 4.01 Trans.
hi
Im validating a friend's code, so i didn't build this form/table. I was wondering if anyone knows how to validate this for 4.01 transitional? I would truly appreciate it also, the include code(<% FraudUtil.renderFraudField(request, out); %>) has to stay in the form where it's at, i just need help getting the form and table integrating properly to validate. i think this is a simple fix, i just can't seem to work it properly. thank u! <table cellpadding="0" cellspacing="0" width="300" border="0"> <form action="<%=SRV_MAP%>" name="quoteForm" method="get" onsubmit="return validateQuoteRequestForm();"> <% FraudUtil.renderFraudField(request, out); %> <tr valign="top"> <td colspan="2">Fill this form for a Free Auto Transport Quote from 10 Vehicle Shipping brokers and/or Carriers</td> </tr> <tr valign="top"> <td colspan="2"> </td> </tr> <tr valign="top"> <td align="left"><a name="auto+transport+quote">Name:</a></td> <td align="left"><input class="forms" type="text" name="<%=PARAM_NAME%>" size="25" tabindex="1" value=""></td> </tr> <tr valign="top"> <td align="left"><strong>Phone:</strong></td> <td align="left"><input class="forms" type="text" name="<%=PARAM_PHONE%>" size="25" tabindex="2"><br> (ex: 555-555-5555) </td> </tr> <tr valign="top"> <td align="left"><strong>Email:</strong></td> <td align="left"><input class="forms" type="text" name="<%=PARAM_EMAIL%>" size="25" tabindex="3"><br> (ex: john@hotmail.com) </td> </tr> <tr valign="top"> <td align="left"><strong>Confirm Email:</strong></td> <td align="left"><input class="forms" type="text" name="<%=PARAM_EMAIL2%>" size="25" tabindex="4"></td> </tr> <tr valign="top"> <td align="left"><strong>Pickup Location</strong></td> <td> <select name="<%=PARAM_FROM_LOCATION_ID%>" class="quoteForm" tabindex="5" size="4"> <% for (LocationAcceptableValue currentValue : SearcherBeeSystem.getAcceptableLocations()) { %> <option value="<%=currentValue.getCode()%>"><%=currentValue.getDisplayValue()%> </option> <% } %> </select> </td> </tr> <tr valign="top"> <td><strong>Pickup City</strong></td> <td><input class="forms" type="text" name="<%=PARAM_FROM_CITY%>" size="25" tabindex="6"></td> </tr> <tr valign="top"> <td align="left"><strong>Pickup Zip:</strong></td> <td align="left"><input class="forms" type="text" name="<%=PARAM_FROM_ZIP%>" size="10" maxlength="6" tabindex="7"></td> </tr> <tr valign="top"> <td align="left"><strong>Delivery State:</strong></td> <td align="left"> <select name="<%=PARAM_TO_LOCATION_ID%>" class="quoteForm" tabindex="8" size="4"> <% for (LocationAcceptableValue currentValue : SearcherBeeSystem.getAcceptableLocations()) { %> <option value="<%=currentValue.getCode()%>"><%=currentValue.getDisplayValue()%> </option> <% } %> </select> </td> </tr> <tr valign="top"> <td align="left"><strong>Delivery City:</strong></td> <td align="left"><input class="forms" type="text" name="<%=PARAM_TO_CITY%>" size="25" tabindex="9"> </td> </tr> <tr valign="top"> <td><strong>Delivery Zip</strong></td> <td><input class="forms" type="text" name="<%=PARAM_TO_ZIP%>" size="10" maxlength="5" tabindex="10"></td> </tr> <tr valign="top"> <td><strong>Veh. Type</strong></td> <td> <select id="auto-transport-vehicles" name="<%=PARAM_VEHICLE_TYPE_ID%>" class="orderForm" tabindex="11" size="3"> <option value="">Select One</option> <% for (VehicleTypeAcceptableValue currentValue : SearcherBeeSystem.getAcceptableVehicleTypes()) { %> <option value="<%=currentValue.getCode()%>"><%=currentValue.getDisplayValue()%> </option> <% } %> </select> </td> </tr> <tr valign="top"> <td align="left"><strong>Veh. Year:</strong></td> <td align="left"><input class="forms" type="text" name="<%=PARAM_VEHICLE_YEAR%>" size="10" maxlength="4" tabindex="12"></td> </tr> <tr valign="top"> <td align="left"><strong>Veh. Make:</strong></td> <td align="left"><input class="forms" type="text" name="<%=PARAM_VEHICLE_MAKE%>" size="25" tabindex="13"></td> </tr> <tr valign="top"> <td align="left"><strong>Veh. Model:</strong></td> <td align="left"><input class="forms" type="text" name="<%=PARAM_VEHICLE_MODEL%>" size="25" tabindex="14"></td> </tr> <tr valign="top"> <td align="left"><strong>Shipping Date:</strong></td> <td align="left"><input class="forms" type="text" name="<%=PARAM_PICKUP_DATE%>" size="25" maxlength="10" value="" tabindex="15"><br> (ex: MM/DD/YYYY) </td> </tr> <tr valign="top"> <td colspan="3" align="left"> <input type="radio" name="<%=PARAM_VEHICLE_STATUS_ID%>" value="1" tabindex="16"> <strong>Running</strong> <input type="radio" name="<%=PARAM_VEHICLE_STATUS_ID%>" value="2" tabindex="16"> <strong>Not Running</strong> </td> </tr> <tr valign="top"> <td colspan="3" align="center"> <input type="image" src="<%=SearcherBeeSystem.getUrlStaticPath()%>/images/btn_submit_quote_over.gif" tabindex="17" value="SUBMIT" alt="Get 10 Auto Transport Quotes Now"></td> </tr> <tr valign="top"> <td colspan="3"><br> <ul class="redlist"> <li>Easy online form you fill out one time</li> <li>Immediate response from <strong>10 of the best Auto Transport Companies</strong> on the Internet</li> <li>All <strong>Vehicle Shipping companies</strong> responding are LICENSED, BONDED & INSURED</li> <li>Fast response from the Nations Best Car Shipping companies!</li> </ul> </td> </tr> </form> </table> Similar Tutorials<form method="post" enctype="text/plain" action="mailto:paradox@hotmail.com"> <table cellpadding="10"> <tr> <td class="style4">Full name:</td> <td colspan="2"><br><input type="text" name="first" size="30"></td> </tr> <tr> <td class="style4">Company name:</td> <td colspan="2"><input type="text" name="surname" size="30"></td> </tr> <tr> <td class="style4">Email address:</td> <td colspan="2"><input type="text" name="sender" size="30"></td> </tr> <tr> <td class="style4">Phone number:</td> <td colspan="2"><input type="text" name="phone" size="30"></td> </tr> <tr> <td class="style4">I prefer contact by:</td> <td><input type="radio" name="contactpreference" value="email"><span class="style4">Email</span></td> <td><input type="radio" name="contactpreference" value="phone"><span class="style4">Phone</span></td> </tr> <tr> <td class="style4">Service of Interest:</td> <td colspan="2"> <select name="q" size="1"> <option>Anatomy Web design and development</option> <option>Anatomy E-learning</option> <option>Anatomy Graphics</option> <option>Anatomy Flash</option> </select> </td> </tr> <td class="style4">Comments/Feedback</td> <td colspan="2"><br><textarea cols=40 name="Comments" rows="6"></textarea></td> <tr> <td id="botton" colspan="3"><input type="reset" value="Reset"><input type="submit" value="Submit"></td> </tr> </table> </form> Damn, am I needy or what? Could someone tell me why my code is not validating. HTML Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>Welcome to Streams of Dreams Fly Shop - NJ's premier fly fishing source!</title> <style type="text/css"> #wrapper {margin: 0px auto; padding: 0px; width: 850px; text-align: center; } #banner {width: 850px; height: 135px; } #banner img {width: 850px; height: 135px; } #menuh {width: 850px; height: 21px; } #menuh ul{margin-left: 0px; padding-left: 0px; list-style: none; float: left; } #menuh ul li{float: left; width: 100%; } #menuh a {height: 1%; font: bold 0.7em/1.4em arial, sans-serif; } #menuh-container { position: center; top: 0; left: 0; width: 850px; } #menuh { font-size: small; font-family: arial, helvetica, sans-serif; width:100%; float:left; margin:0; margin-top: 0; } #menuh a { text-align: center; display: block; border: 1px solid #555; white-space: nowrap; margin: 0; padding: 0.3em; } #menuh a:link, #menuh a:visited, #menuh a:active /* menu at rest */ { color: white; background-color: #003459; text-decoration: none; } #menuh a:hover /* menu at mouse-over */ { color: white; background-color: cornflowerblue; text-decoration: none; } #menuh a.top_parent, #menuh a.top_parent:hover /* attaches down-arrow to all top-parents */ { background-image: url(navdown_white.gif); background-position: right center; background-repeat: no-repeat; } #menuh a.parent, #menuh a.parent:hover /* attaches side-arrow to all parents */ { background-image: url(nav_white.gif); background-position: right center; background-repeat: no-repeat; } #menuh ul { list-style: none; margin: 0; padding: 0; float: left; width: 94.4px; /* width of all menu boxes */ } #menuh li { position: relative; min-height: 1px; /* Sophie Dennis contribution for IE7 */ vertical-align: bottom; /* Sophie Dennis contribution for IE7 */ } #menuh ul ul { position: absolute; z-index: 500; top: auto; display: none; padding: 0; margin: 0; } #menuh ul ul ul { top:0; left:100%; } div#menuh li:hover { cursor: pointer; z-index: 100; } div#menuh li:hover ul ul, div#menuh li li:hover ul ul, div#menuh li li li:hover ul ul, div#menuh li li li li:hover ul ul {display: none;} div#menuh li:hover ul, div#menuh li li:hover ul, div#menuh li li li:hover ul, div#menuh li li li li:hover ul {display: block;} #content1 {width: 850px; height: 20px; vertical-align: top; } #content2 {width: 850px; height: 306px; vertical-align: top; } #content3 {width: 850px; height: 250px; vertical-align: top; } #copyrite {width: 850px; height: 72px; } #copyrite img {width: 850; height: 72px; } .style1 {color: #663333} </style> </head> <body> <div id="wrapper"> <div id="banner"> <img src="Images/Banners/nwbanner.jpg" alt="nwbanner" width="850" height="144" /></div> <div id="menuh-container"> <div id="menuh"> <ul> <li><a href="#" class="top_parent">Home</a> </ul> <ul> <li><a href="#" class="top_parent">Fly Shop</a> <ul> <li><a href="#" class="parent">Rods</a> <ul> <li><a href="#">Thomas and Thomas</a></li> <li><a href="#">Scott</a></li> <li><a href="#">Beulah</a></li> <li><a href="#">Temple Fork</a></li> </ul> </li> <li><a href="#" class="parent">Reels</a> <ul> <li><a href="#">Abel</a></li> <li><a href="#">Mako</a></li> <li><a href="#">Saracione</a></li> <li><a href="#">Hatch</a></li> </ul> </li> <li><a href="#" class="parent">Waders</a> <ul> <li><a href="#">Dan Bailey</a></li> <li><a href="#">Chota</a></li> <li><a href="#">Hodgman</a></li> <li><a href="#">Patagonia</a></li> </ul> </li> <li><a href="#" class="parent">Wading Shoes</a> <ul> <li><a href="#">Chota</a></li> <li><a href="#">Patagonia</a></li> <li><a href="#">Hodgman</a></li> <li><a href="#">Simms</a></li> </ul> </li> <li><a href="#" class="parent">Accessories</a> <ul> <li><a href="#">Fly Lines</a></li> <li><a href="#">Fly Boxes</a></li> <li><a href="#">Nets</a></li> <li><a href="#">Clothing</a></li> </ul> </li> </ul> </li> </ul> <ul> <li><a href="#" >Photos</a> </ul> <ul> <li><a href="#" >Destinations</a> </ul> <ul> <li><a href="#" >Events</a> </ul> <ul> <li><a href="#" >Lessons</a> </ul> <ul> <li><a href="#" >Spey</a> </ul> <ul> <li><a href="#" >Bios</a> </ul> <ul> <li><a href="#" >Contact Us</a> </ul> </div> <!-- end the menuh-container div --> </div> <!-- end the menuh div --> <div id="content1"></div> <div id="content2"></div> <div id="content3"></div> <div id="copyrite"><img src="Images/Banners/copyrightbar.jpg" alt="CopywriteBar" /></div> </div> </body> </html> Hey, sorry for being such a n00b. I'm trying to create a basic page which will take pieces of data from users and insert it into a large table which makes up the site. There's a link of what I'm trying to have the final product look like he http://fantasyspotlight.com/ Yeah... I'm a huge dork and this is for my fantasy football draft. I know some basic HTML but can't figure out, or find resources, on how to get this done. Ideally, I would like 2 dropdown menus and 2 text fields at the bottom of the page, then depending on their values they would populate the "spreadsheet" in a specific manner. Any help would be appreciated, or just some chat on ideas. Thanks in advance -PC The standard html only allow a form outside a table, like: Code: <html><body> <form action="post.php" method="post"> <table><tr><td><input type="text"></td></tr> </table> </form> </html> But I need to have several buttons posted to different place, which means I need to have several forms(<form>) inside a table. Something like this: Code: <html><body> <table> <form action="post.php" method="post"> <tr><td><input type="text"></td></tr> </form> <form action="test.php" method="post"> <tr><td><input type="text"></td></tr> </form> <form action="go.php" method="post"> <tr><td><input type="text"></td></tr> </form> </table> </html> How do I do that and follow the W3C standard? Thanks. OK. I'm looking to do two things 1) make the comments box include 5 rows. 2) make a space between the two columns in the form. Your assistance is appreciated. HTML Code: <form class='subscription_form' id='subscription_form' method='post' action='http://www.website.com/xyz form not real name'> <table align="center"> <tr> <td> First Name:<br /> <input type="text" name="first_name" size="26" /><br /> Last name:<br /> <input type='text' name='last_name' size="26" /><br /> Your Company:<br /> <input type='text' name='company' size="26" /><br /> Company Email Address:<br /> <input type="text" name="email" size="26" /><br /> Your Phone:<br /> <input type='text' name='phone1' size="26" /><br /> </td> <td> Website:<br /> <input type='text' name='custom__website' size="26" /><br /> Comments: (optional)<br /> <input type="text" name="custom_comments" size="26" col="4" /><br /> <input type='hidden' name='id' value='271' /> <input type='hidden' name='first_name_man' value='1' /> <input type='hidden' name='last_name_man' value='1' /> <input type='hidden' name='company_man' value='1' /> <input type='hidden' name='phone1_man' value='1' /> </td> </tr> </table> <p align="center"><input type="image" src="http://www.elevatingyourbusiness.com/PLEASECONTACTUS.jpg" /></p> </form> How would I go abouut making a form like so EventCode StudentID Result Notes 1 1 [textfield here] [textfield here] 1 2 [textfield here] [textfield here] 1 3 [textfield here] [textfield here] 1 4 [textfield here] [textfield here] 1 5 [textfield here] [textfield here] am I any where close with something like this? tr> <td> $StudentID </td> <td> $FirstNames $LastNames </td> <td> <p> <input type="text" name="Result" size="25" /> </p></td> <td> <p< <input type="text" name="Notes" size="25" /> </p> </td> </tr> the $variables are php variables. I am finishing up a section of my site and I am validating it now and correcting all the areas. I have one section that I am having problems with and not sure how to correct... http://www.mesquitechristmas.com/loc...action=promote FYI, I am aware of the error at the top. This is a restricted page so I removed the session so it can be made viewable by the general public. This is the error I am getting.... http://validator.w3.org/check?uri=ht...idator%2F1.591 The second error is because of the first, so how do I go about fixing the first error so it will validate. Tidy is no help and I can not find any information on how to correct this. -Thanks Hello everyone, I'm new here and need a little help. I'm getting two errors on my validate and was hoping someone can see something I'm not seeing. I'm new to xhtml/html so any help I would be very grateful. Here are the two errors Code: Error Line 209, Column 33: document type does not allow element "ul" here; assuming missing "li" start-tag <ul class="children"> ✉ Error Line 248, Column 15: end tag for "li" omitted, but OMITTAG NO was specified </ol><!-- /end msgs-list --> ✉ You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">". Info Line 209, Column 13: start tag was here <ul class="children"> and here is the code HTML Code: <ol class="msgs-list"> <li> <div class="msg-entry"> <div class="author"> <p><a href="#">Author Name</a></p> <p>Posted: 01-01-11<span class="sep">12:41</span></p> </div> <div class="msg-body"> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> </div> </div> </li> <ul class="children"> (LINE 209) <li> <div class="msg-entry"> <div class="author"> <p><a href="#">Author Name</a></p> <p>Posted: 01-01-11<span class="sep">12:41</span></p> </div> <div class="msg-body"> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> </div> </div> </li> </ul> <ul class="children"> <li> <div class="msg-entry"> <div class="author"> <p><a href="#">Author Name</a></p> <p>Posted: 01-01-11<span class="sep">12:41</span></p> </div> <div class="msg-body"> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> </div> </div> </li> </ul> <ul class="children"> <li> <div class="msg-entry"> <div class="author"> <p><a href="#">Author Name</a></p> <p>Posted: 01-01-11<span class="sep">12:41</span></p> </div> <div class="msg-body"> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> </div> </div> </li> </ul> </ol><!-- /end msgs-list -->(LINE 248) Many thanks Hi, Just a quick post here to ask for some help. My website (http://www.anewtake.com/ted) which I am making, works fine in Safari and Chrome. However, it does not work quite in Firefox: the top bar, where it says 'welcome' is placed too far over to the right. I'm not sure whether it works in IE7 or IE8, because it won't install on my computer! And I'm not bothered about IE6 because it's just old. So my question is; can anyone help me with getting this page to work in Firefox and validate? Thanks, Ted Hi I have a problem with rev= tag that wont validate. I am using Lightbox on the first 2 images on my webpage http://www.colletts.co.uk/colletts_n..._holidays.html where the caption on the lightbox image is linked to the relevant page with a rev link. This however doesn't verify 'Line 100, Column 120: character "/" is not allowed in the value of attribute "rev".' Does anyone know a way around this or should I just drop the link? Whadyareckon HTML Code: <a href="lightbox/via_ferrata_dolomites_tofana.jpg" rel="lightbox" title="Via Ferrata in the Dolomites" rev="http://www.colletts.co.uk/via_ferrata_and_klettersteig.html"> <img src="http://www.colletts.co.uk/images/via_ferrata_dolomites_italy.jpg" alt="Via Ferrata in the Dolomites" width="238" height="314" class="rpadding" longdesc="http://www.colletts.co.uk/images/via_ferrata_dolomites_italy.jpg"/> Well hi there, I've been altering and adding to my website over the last few months, and I've decided it's almost complete. I decided to try and make what was already complete w3c compliant (using the w3c validator), and I've hit a tree. This is involves my index.html which uses frames. Well after I discovered that I must set the doctype to HTML frameset, there were two remaining errors which I could not resolve. I have spent ages googling but I haven't found much useful. here are the errors Quote: Line 15, Column 6: end tag for element "HEAD" which is not open. </head> The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem. If this error occurred in a script section of your document, you should probably read this FAQ entry. Line 16, Column 5: document type does not allow element "BODY" here. <body> The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed). One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error). Here is my index.html (yes I know I used loads of br's): Code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <meta http-equiv="Content-Language" content="EN-GB"> <link rel="stylesheet" type="text/css" href="theme.css"> <title>Revelations of the Ancients</title> <frameset cols="16%,84%"> <frameset rows="80%,20%"> <frame name="sect" id="sect" src="sections.html"> <frame name="val" id="val" src="val.html"> </frameset> <frame name="main" id="main" src="home.html"> </frameset> </head> <body> <center> <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br> <p>Revelations of the Ancients is a game made with the X-Realms engine.<br> Affiliate site: <a href="http://www.newworlddynasty.com/">www.newworlddynasty.com</a></p> <h1><u>News</u></h1> <p>17.12.07: People who want to play the game once it enters <b>open beta stage</b> view this thread <a href="http://rota.freeforums.org/viewtopic.php?p=10#10"target="_blank">here</a>!</p> <b><a href="news.html">View all news</a></b> </center> </body> </html> whats wrong here? its been bugging me for ages!!! Code: <script> function Blank_TextField_Validator() { // Check the value of the element named visitor_name // from the form named my_form if (my_form.visitor_name.value == "") { // If null display and alert box alert("Please fill in the text field."); // Place the cursor on the field for revision text_form.text_name.focus(); // return false to stop further processing return (false); } // If text_name is not null continue processing return (true); } </script> <form id="my_form" action="#" name="my_form"> <p>Please enter your name:</p> <input type="text" name="visitor_name" id="visitor_name" /> <input type="submit" value="Submit" /> </form> I need to make sure my site is validated with XHTML but i don't think Dreamweaver is doing it right. I made one page and it said it was all good but i left some span tags open. It never mentioned that though. So how do i validate in Dreamweaver against XHTML? Where do i check what it validates against? In the Validate menu it says "If no DOCTYPE is detected, validate against" then has a list of HTML 2, 3, 4, XHTML 1..etc Does that mean i need to remove the DOCTYPE that's in the code or just make sure it's the right one I'm validating againt? Thanks for any help. Hi, Im really new to this site and to HTML in general. I am having trouble validating this page and would greatly appreciate some help. I am attaching the text file if anyone can help. Thanks in advance. Yes, I have read the sticky but am still a little stuck. I am setting up a newsletter.I have validated it and have this one annoying error. document type does not allow element "P" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag Now, I dont want to use css since as im not sure how many email programs will pick it up..so to be safe im using just the basic font tag system. I get the above error from this example. <font face="Verdana, Arial, Helvetica, sans-serif" size="2"> <P>Testing testing </> </font> I also tried putting a style in the body but the outlook doesnt pick it up,well mine anyways since its outlook 2000. any advice thanks This peace of code is the only part of my page not validating. <style type="text/css" media="screen"> #header { background: url("http://SITEADDRESS.com/img/header2.jpg") no-repeat bottom center; } </style> How can I get it to validate? Does anyone have an example of a form that utiltilizes a table to structure the placement of form controls and includes a few fieldset controls that group other controls on a form? ANY help would be greatly appreciated, Karen Greetings I'm organizing a competition, or quest, between my forum members. Each competitor has to finish 37 tasks. So I built this table to use as a progress tracker. It lists the names of the participants at the left side, and a horizontal bar at top with 37 cells showing task number. Each time a user finishes a task, he PMs me and I then go edit his/her table row to change the color of the cell under that task, and type the date he finished it in. But this is too much work for me, as I have to edit the table many times each day.. so I was thinking, can someone help me do the following? It would be great if I have a form that users can fill in, and then that form submits its data into the corresponding cells in the progress tracker table, so that the table automatically reflects the new data. The user has to type a code that I assign for him, for the form to know which row to handle, and also to prevent others from playing tricks with his data. It would be even greater if another form can be made that automates the participation process, by adding a new row when a new user who wants to join the competition, submits the form. Then the form emails the user the code he would later need to submit data to his row. Many thanks for any help, code or examples given. |