Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Registration flow/design question

  • 05-08-2010 04:44PM
    #1
    Registered Users, Registered Users 2 Posts: 8,070 ✭✭✭


    Hey Guys,
    I have a 3 step registration process.
    reg1.php
    reg2.php
    reg3.php

    firstly is there anyway i can mask this
    so people cant see the above however they wont be able to skip steps [see below]

    after reg1.php you get passed on to reg2.php
    however there is an ID assciated with this reg2.php=youremail@blahblah.com

    so if email doesnt exist, i can redirect to any other page but is this the best way ? should i be using sessions instead? security ?

    Whats the standard way ?

    Thanks


Comments

  • Registered Users, Registered Users 2 Posts: 9,579 ✭✭✭Webmonkey


    Why do you need seperate files. You could have the steps passed as GET variables.

    Also you could mask what file is being used using Mod Rewrite on apache if you using it so /registration/step1 goes to registration.php?step=1, /registration/step2 goes to ?step=2 etc.


  • Registered Users, Registered Users 2 Posts: 8,070 ✭✭✭Placebo


    thanks web monkey, i have separate files because registration effects users differently, some enter code in step 2, some have to be emailed the code etc

    also it makes it easier not to be hiding div's etc

    using get to pass values on to the next page?


  • Registered Users, Registered Users 2 Posts: 981 ✭✭✭fasty


    If you're dead set on using separate pages, you should POST values, not GET them.


Advertisement