-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
30 lines (27 loc) · 1.29 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
require 'steamlogin.php';
if (isset($_SESSION['steamid'])) {
include 'userInfo.php';
logoutbutton();
echo "<form action='' method='get'><button class='update' name='update' type='submit'>Update</button></form>";
echo "<br>SteamID:". $steamprofile['steamid'];
echo "<br>CommunityVisibilityState:". $steamprofile['communityvisibilitystate'];
echo "<br>Profilestate:". $steamprofile['profilestate'];
echo "<br>Personaname:". $steamprofile['personaname'];
echo "<br>Last logoff:". $steamprofile['lastlogoff'];
echo "<br>profileURL:". $steamprofile['profileurl'];
echo "<br>profileURL PERM:". $steamprofile['profileurlperm'];
echo "<br>Avatar:". $steamprofile['avatar'];
echo "<br>Medium Avatar:". $steamprofile['avatarmedium'];
echo "<br>Full Avatar:". $steamprofile['avatarfull'];
echo "<br>Personastate:". $steamprofile['personastate'];
echo "<br>Realname:". $steamprofile['realname'];
echo "<br>Primary Clan ID:". $steamprofile['primaryclanid'];
echo "<br>Time created:". $steamprofile['timecreated'];
echo "<br>Uptodate:". $steamprofile['uptodate'];
echo "<br>Country:". $steamprofile['loccountrycode'];
echo "<br>State:". $steamprofile['locstatecode'];
echo "<br>City:". $steamprofile['loccityid'];
} else {
loginbutton();
}