get değişkenleri php oturumları oluşturmada sorun

0 Cevap

i have following in my url http://www.foo.com/?token=foo&tokenid=fooid now i want to get those token and tokenid value and create sessions from both values... i have following in my php code

$em = $_GET['token'];
$emid = $_GET['tokenid'];
$_SESSION['foo'] = $em;
$_SESSION['fooid'] = $emid;

ama oturumları oluşturmak ... nasıl ben çözebilir olmadığını

0 Cevap