Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as PHP by afdsadf ( 15 years ago )
<?php
session_start();
if(isset ($_SESSION["iets"]))
{
echo 'hoi';
}
else
{
echo 'failtje';
}
($_SESSION["iets"] == "ingelogd") ? 'ingelogd' : header("location:google.nl");
if($_SESSION["iets"] == "ingelogd")
{
echo 'Welkom op de site';
}
else
{
header("location:main_login.php");
}
?>
<html>
<body>
Login Successful
</body>
</html>
Revise this Paste
Parent: 40730