|
T
|
thesofa 4/22/2007 |
|
the basics of what you need are covered in this post about getting user ID information. |
|
|
J
|
Jane 4/23/2007 |
|
Hi, global $conn; $str = "select DisplayName from users where Name='".$_SESSION["UserID"]."'"; $rs = db_query($str,$conn); $data = db_fetch_array($rs); //save value in the session variable $_SESSION["DisplayName"] = $data["DisplayName"]; |
|