hello everyone i need help in session setup 
currently if i want to use session i have two ways
	
but on old w8u and gumchat  there is session that i linked with both  by gumslone i cannot figure out how ??
thing i want to do similar is that setup url sid = sid_id and also setup session = sid_id
then if user is logged in but url is not having sid_id it checks from session and give url that sid_id but wasnt able to figure out how to do that
hoping someone will help me out with this feature
					currently if i want to use session i have two ways
PHP Code:
	
	
$sid_id = isset($_GET['sid_id']) ? $_GET['sid_id'] : '';
$sid_id = isset($_SESSION['sid_id']) ? $_SESSION['sid_id'] : ''; 
thing i want to do similar is that setup url sid = sid_id and also setup session = sid_id
then if user is logged in but url is not having sid_id it checks from session and give url that sid_id but wasnt able to figure out how to do that
hoping someone will help me out with this feature
Comment