PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
session_start();
$memberId=$_SESSION['member_id'];
echo "<a href='next_to_do.php')>session test</a>";// works
echo "<a href='javascript:void(0)' onClick=window.open('next_to_do.php')>session test</a>";// does not work
In the next_to_do page, i am not able to get memberId when i try to use popup
The problem is when i use window.open, i am not able to retain the session values i.e member_id. http://au2.php.net/function.session-start an example from, jorrizza at gmail dot com