php

Posted on at


 session_start();

    if($_SESSION['login'] == "true") {

            header("location: welcome.php");    

        }

?>

 

 

 

 

 

 

 

 

 

 

 

 

 

 

            session_start();

            include("connect.php");

 

            $result = mysql_query('SELECT id FROM members WHERE username="$_SESSION[\'acc\']"');

 

            while($row = mysql_fetch_array($result))

              {

              echo $row['FirstName'] . " " . $row['LastName'] . " " . $row['id'];

              echo "
";

              }

 

 

?>



About the author

160