Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. if(isset($_COOKIE['username'] ) and ($_COOKIE['password'] )){
  2. echo "Cookies are set";
  3. echo $_COOKIE['username'];
  4. echo "<p>", $_COOKIE['password'];
  5. user_login(($_COOKIE['username'] ),($_COOKIE['password'] ));
  6. }else{
  7. echo "<p>Cookies are not set";
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement