Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ipnpro

    $_Session variable not passed to next page?

    Try this.. <?php $login_user = "bob"; session_start(); $_SESSION["registered_user"] = $login_user; ?> //// on the next page: <?php session_start(); $login_user = $_SESSION["registered_user"]; echo $login_user; ?> /// the $login_user variable should output as "bob"

Part and Inventory Search

Back
Top