Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.69 KB | None | 0 0
  1. <?php
  2.                 if(!isset($_SESSION['steamid'])) {
  3.                   echo '
  4.                    <li class="dropdown">
  5.                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Profil <span class="caret"></span></a>
  6.                      <ul class="dropdown-menu">
  7.                        <li class="dropdown-header">Zaloguj się przy użyciu steam!</li>
  8.                        <li>' . loginbutton("rectangle") . '</li>
  9.                      </ul>
  10.                    </li>
  11.                  ';
  12.                 } else {
  13.                   include ('steamauth/userInfo.php');
  14.                 }
  15.               ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement