Announcement

Collapse
No announcement yet.

Any Web Programmers in here?

Collapse
  • Filter
  • Time
  • Show
Clear All
new posts

  • Any Web Programmers in here?

    this may be a long shot, but I'll try anyways.

    I'm working a project and I cant figure this out.

    Due to spacing issues on the homepage of our website, we can't put a full form to collect information from our prospects. We can only put email address.

    When the prospect clicks submit after inputting their email address in this field, I want them to be sent to a 2nd page with a full form with the email address field already populated with what the prospect typed.

    Can anyone help me figure out the coding needed to do this?

    An example of this at w w w. a c l u .o r g
    Last edited by blak81; 01-10-2013, 12:27 PM.

  • #2
    Originally posted by blak81 View Post
    this may be a long shot, but I'll try anyways.

    I'm working a project and I cant figure this out.

    Due to spacing issues on the homepage of our website, we can't put a full form to collect information from our prospects. We can only put email address.

    When the prospect clicks submit after inputting their email address in this field, I want them to be sent to a 2nd page with a full form with the email address field already populated with what the prospect typed.

    Can anyone help me figure out the coding needed to do this?

    An example of this at w w w. a c l u .o r g
    what language you using to process the form?

    Comment


    • #3
      reed's good with this stuff, i believe.


      he's probably in dispose, though. hugging on roy jones' nuts is a full time job.

      Comment


      • #4
        PHP is probably what you want. Google it, there there is a lot of premade/generated form code out there.

        I have a website, do HTML and CSS, but don't know much PHP at all and was able to get a nice looking form on my site.

        Comment


        • #5
          Originally posted by Cleto_Reyes View Post
          what language you using to process the form?
          The form that I would create is going to be html but I don't know what language I should use to accomplish the end result.

          I'm not good at any language except HTML.

          Comment


          • #6
            Originally posted by blak81 View Post
            The form that I would create is going to be html but I don't know what language I should use to accomplish the end result.

            I'm not good at any language except HTML.
            thats the thing. you need to have like asp or php to process the form. then a quick php script on the next page the pulls the input text ="name1" whatever name1 = it will fill it in the page. Then add that to your form action = "page.php" google php GET and POST it will help

            Comment


            • #7
              Heres an example

              form action="welcome.php" method="get"
              Email: input type="text" name="email"
              input type="submit"
              /form

              Then in a php name welcome.php write this


              ?php echo $_GET["email"]; ?.

              then put that code in a Form if you want to

              Comment

              Working...
              X
              TOP