Advertisement

08.13.2007 at 04:07PM PDT, ID: 22760350
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.8

display form data entered by user javascript

Asked by ghost8067 in JavaScript

Tags: , , ,

Below is the code for a contact form and a confirmation oage that I am working on. I was wondering if someone can tell me how I would get the values entered on the form to display on my confirmation page.
The form code and confirmation page are below.
Thanks.

 Form page
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en-US">
      <head>
            <title>Customer Demographics</title>
            <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
            <meta name="keywords" content="starter,coursework">
            <meta name="description" content="Demographics Form">
            <meta name="author" content="Jon Schab">
            <meta name="revision" content="1.0">
      </head>
      <body>
            <h1 align="center">Kudler Fine Foods<br>
              Customer Contact Form
</h1>
            <table width="70%" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td align="center"><form action="customerformsubmitted.htm" method="post" name="demographics" id="demographics">
      <label>First Name:
        <input name="firstname" type="text" id="firstname">
        </label>
      <label>Last Name:
      <input name="lastname" type="text" id="lastname">
      </label>
      <br>
      <br>
      <label> Address:
      <input name="address" type="text" id="address" size="60">
      </label>
      <br>
      <br>
      <label>Email:
      <input name="email" type="text" id="email">
      </label>
      <label>Phone:
      <input name="phone" type="text" id="phone">
      </label>
      <br>
      <br>
      <input type="submit" name="Submit" value="Submit">
      <input name="Clear" type="reset" id="Clear" value="Clear">
    </form>
    </td>
  </tr>
</table>

      </body>
</html>
_______________________________________________________________________________

confirmation page
trying to display between the strong tags.


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en-US">
      <head>
            <title>Customer Demographics</title>
            <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
            <meta name="keywords" content="starter,coursework">
            <meta name="description" content="Demographics Form">
            <meta name="author" content="Jon Schab">
            <meta name="revision" content="1.0">

</script>
<script language="JavaScript"><!--
<!--
/* Copyright http://www.perlscriptsjavascripts.com
   Free and commercial Perl and JavaScripts     */

// page to go to if cookie exists
go_to = "index_completed.html";

// number of days cookie lives for
num_days = 999;
function ged(noDays){
    var today = new Date();
    var expr = new Date(today.getTime() + noDays*24*60*60*1000);
    return  expr.toGMTString();
}

function readCookie(cookieName){
    var start = document.cookie.indexOf(cookieName);
    if (start == -1){
        document.cookie = "seenit=yes; expires=" + ged(num_days);
    } else {
        window.location = go_to;
    }
}

readCookie("seenit");
// -->
</script>


      </head>
      <body>
            <h1 align="center">Thank you for your submission! </h1>
            <table width="70%" border="0" align="center" cellpadding="5" cellspacing="0">
  <tr>
    <td colspan="2" align="center">You Sumbitted the following information: </td>
    </tr>
  <tr>

    <td width="50%" align="right">First Name:</td>
    <td width="50%" align="left"><strong>lastname</strong></td>
  </tr>
  <tr>
    <td align="right">Last Name:</td>
    <td align="left"><strong>lastname</strong></td>
  </tr>
  <tr>
    <td align="right">Address:</td>
    <td align="left"><strong>address</strong></td>
  </tr>
  <tr>
    <td align="right">Email:</td>
    <td align="left"><strong>email</strong></td>
  </tr>
  <tr>
    <td align="right">Phone:</td>
    <td align="left"><strong>phone</strong></td>
  </tr>
</table>

      </body>
</html>


Start Free Trial
[+][-]08.13.2007 at 04:33PM PDT, ID: 19688370

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 14-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]08.13.2007 at 06:21PM PDT, ID: 19688728

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 05:36AM PDT, ID: 19691220

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 14-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 06:48AM PDT, ID: 19691795

View this solution now by starting your 14-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: JavaScript
Tags: kudler, fine, form, javascript
Sign Up Now!
Solution Provided By: numbers1to9
Participating Experts: 2
Solution Grade: A
 
 
[+][-]08.14.2007 at 10:56AM PDT, ID: 19694077

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 11:22AM PDT, ID: 19694336

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 11:40AM PDT, ID: 19694487

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 11:48AM PDT, ID: 19694543

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 01:02PM PDT, ID: 19695152

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 01:37PM PDT, ID: 19695446

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 02:47PM PDT, ID: 19695868

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 03:39PM PDT, ID: 19696116

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 04:51PM PDT, ID: 19696388

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 05:14PM PDT, ID: 19696440

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 06:24PM PDT, ID: 19696633

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.14.2007 at 06:54PM PDT, ID: 19696817

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-43 / EE_QW_1_20070628