Skip to content

Instantly share code, notes, and snippets.

@simplyniceweb
Last active November 15, 2016 16:56
Show Gist options
  • Save simplyniceweb/ac6194ad7ba5bcbf13e0fd0993191ffa to your computer and use it in GitHub Desktop.
Save simplyniceweb/ac6194ad7ba5bcbf13e0fd0993191ffa to your computer and use it in GitHub Desktop.
// save post values to a variable
$username = $_POST["username"];
$password = $_POST["password"];
// create array
$userdata = [
"username" => $username,
"password" => $password
];
// save the array to session
$_SESSION["user"] = $userdata;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment