Web Analytics Made Easy -
StatCounter how to create a multipage registration form ? - CodingForum

Announcement

Collapse
No announcement yet.

how to create a multipage registration form ?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • how to create a multipage registration form ?

    hi all friends
    please help to create multipage registration form like this
    1st-student information
    2nd-parental information
    3rd-fees information
    and all goes to mysql database after submission 3rd step.
    please help me with code
    thanks in advance

  • #2
    There are a couple of ways you can achieve what you want. Have multiple pages that have your forms on them and then carry forward the values from the previous input's into hidden inputs on the next form. Or, save them after every page to the sql or whatever table, meaning you can easily implement a 'save and come back to' feature. Or, just have one massive long form
    Last edited by Inigoesdr; Sep 13, 2011, 03:24 PM.
    Useful function to retrieve difference in times
    The best PHP resource
    A good PHP FAQ
    PLEASE remember to wrap your code in [PHP] tags.
    PHP Code:
    // Replace this
    if(isset($_POST['submitButton']))
    // With this
    if(!empty($_POST))
    // Then check for values/forms. Some IE versions don't send the submit button 
    Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.

    Comment


    • #3
      I think saving each page in a MySQL table is the best way.

      Let's say that a student fills out his/her portion and needs the
      parent to do the next step. They submit the first form and leave
      for the day. The next day, the parent goes in, and it knows that
      the first page is done, and continues on.

      Also note ... a secure server should be used because this sounds like
      it contains sensitive personal data. That being said, the scripting you
      do should be rock-solid secure. If you're just learning PHP, I would say
      this project should be checked by a professional programmer when
      you are done.


      .

      Comment

      Working...
      X
      😀
      🥰
      🤢
      😎
      😡
      👍
      👎