Propagation problem! PLEASE help!

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!

Moderator: General Moderators

Post Reply
bumple
Forum Commoner
Posts: 34
Joined: Thu Jan 08, 2004 4:38 am

Propagation problem! PLEASE help!

Post by bumple »

Hello all!

How come when I try propagating a user's session ID, it does not propagate correctly. My site is laid out like this:

member's log in...go to login.php. All the links work perfectly fine, and actually have the session ids propagated with them (i.e: http://www.hello.com/member.php?SESSID=alksdfo). Now, let's say I go to hello.com/oogah.php?SESSID=alksdfo...in oogah.php, it doesn't propagate the session ID in any links. i initialize session_start() on each page, and I don't see why it shouldn't be working. Any suggestions?

Thanks!
-BUMPle.
User avatar
AVATAr
Forum Regular
Posts: 524
Joined: Tue Jul 16, 2002 4:19 pm
Location: Uruguay -- Montevideo
Contact:

Post by AVATAr »

why you want to propagate session variables in the id...

just access the session id whith $_SESSION['myvar'];
Post Reply