introducing rawdata.php for a test

This commit is contained in:
Thies Mueller 2021-01-09 23:44:04 +01:00
parent 0fbbb43aa4
commit 12cf218916
2 changed files with 14 additions and 1 deletions

View File

@ -90,7 +90,7 @@ echo "</tr>";
<a href="secure.php"><button class="btn btn-info">Back</button></a> <a href="secure.php"><button class="btn btn-info">Back</button></a>
<br/> <br/>
<br> <br>
<a href="rawdata.php"><button class="btn btn-black">Raw Data</button></a>
<br/> <br/>
<br/> <br/>

13
rawdata.php Normal file
View File

@ -0,0 +1,13 @@
<?php
echo $_SESSION['userid'];
echo "<br />"
echo $_SESSION['username'];
echo "<br />"
echo $_SESSION['email'];
echo "<br />"
echo $_SESSION['givenName'];
echo "<br />"
echo $_SESSION['lastName'];
echo "<br />"
echo $_SESSION['activated'];
?>