Search results

  1. R

    Help with PHP register script

    Other part of session.php /* Unset PHP session variables */ unset($_SESSION['username']); unset($_SESSION['userid']); /* Reflect fact that user has logged out */ $this->logged_in = false; /** * Remove from active users table and add to...
  2. R

    Help with PHP register script

    other part of session.php * startSession - Performs all the actions necessary to * initialize this session object. Tries to determine if the * the user has logged in already, and sets the variables * accordingly. Also takes advantage of this page load to * update the...
  3. R

    Help with PHP register script

    Of course, of course. process.php <? /** * Process.php * * The Process class is meant to simplify the task of processing * user submitted forms, redirecting the user to the correct * pages if errors are found, or if form is successful, either * way. Also handles the logout procedure. *...
  4. R

    Help with PHP register script

    Since 2 weeks ago, none of my members could sign up. I have the MySQL database set up, this script is Jpmaster77's and here is the script: <? /** * Register.php * * Displays the registration form if the user needs to sign-up, * or lets the user know, if he's already logged in, that he *...
Top