Jump to content

mellis95

Members
  • Posts

    87
  • Joined

  • Last visited

    Never

About mellis95

  • Birthday 09/09/1981

Profile Information

  • Gender
    Male
  • Location
    Texas

mellis95's Achievements

Member

Member (2/5)

0

Reputation

  1. Are you having a specific problem with this code? You methodology looks generally okay. I would probably not use all the variables, and do this: (Not sure that it really makes much difference...) <?php session_start(); if(isset($_SESSION['firsttime'])) { header("location: teamselections.php"); } else { header("location: myaccount.php"); } ?> Also, if you have some value assigned to $_SESSION['firsttime'], you might check for that value as well as just isset. i.e.: if(isset($_SESSION['firsttime'])&&($_SESSION['firsttime']==true))
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.