Jump to content

Hey how can i make a page do this


Bowser

Recommended Posts

I'm supposing that you're making a link.. where it'd be a random number each time in your address for the session number.

$snumber=rand(1, 250000);

Then just put in your link..

<a href='index.php?session=$snumber'>Link</a>

Depending on what number you put in the random field, it will random from 1 to whatever number you want, or 0 to whatever. Hope this helps :]
  • 11 months later...
to call the session id you use this function: session_id()
of course you must start the session (session_start()) at the top of the page. this is another good way. or you can generate a random number then use md5() on it to make it look more confusing.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.