Advertisement
callmewhateverUwant

Untitled

Apr 30th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2. include "koneksi.php";
  3. session_start();
  4. if (!isset($_SESSION['username'])){
  5. header ("location:login.php");
  6. }
  7. $username = $_SESSION['username'];
  8. ?>
  9. selamat datang <?php echo $username; ?>
  10. <a href="logout.php">log out</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement