Im trying to send sessions from site to popup and im not sure if i have the code right or not :S
here is the popup link im using
Code: Select all
<A HREF="javascript:popUp('http://mysite.com?sid=<?php echo session_id(); ?>')">Popup Window</A><br>
and here is the code thats put in the popup window
Code: Select all
<?php
session_id(strip_tags($_GET['sid']));
ob_start()
//and go on with your session vars
?>
now when i look at the top where the title is it shows that the sessions are going but still doesn't show the users name can someone hlep me here? please
Thank you
Smackie