Hi,
I need to find a script that will post ?id=$id to a header script, I also need a script in my header to store it temporary, and another php page to get that variables again, can it be done?
regards
| SitePoint Sponsor |
Hi,
I need to find a script that will post ?id=$id to a header script, I also need a script in my header to store it temporary, and another php page to get that variables again, can it be done?
regards
What about put this into $_SESSION array?
Well, the session id is not just any generated session id, it is made up of
$session = $PHPSESSID;
$newid = "$session&$companypassword&$emailaddress&$clientid&$active";
$id = base64_encode("$newid");
what do you recommend?
what are you whant in realy?
what is id?
it is security key or id of page or same more?
r u looking that?Originally Posted by sonar
header("Location: /trader/admin.php?user=$a");
In an admin.php
u can receive that information like that
$user = empty($_REQUEST['user']) ? '' : $_REQUEST['user'];
session_start();Originally Posted by sonar
$sid=session_id();
do u want the session id or some other variable?
Bookmarks