<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
error_reporting(0);
//Always place this code at the top of the Page
session_start();
if (!isset($_SESSION['id'])) {
    // Redirection to login page twitter or facebook
    header("location: index2.php");
}
$adres = "http://192.168.2.23/veriaktar.asp?username='.$_SESSION['username'].'&email='.$_SESSION['email'].'&oauth_id='.$_SESSION['oauth_id'].'&First_name='.$_SESSION['First_name'].'&Last_Name='.$_SESSION['Last_name'].'&oauth_provider='.$_SESSION['oauth_provider'].'";
header("location: $adres");
 
?>