Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ayies128
Last active November 29, 2016 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayies128/6559ff6c64e6aa5d4f2ba19de11cdf02 to your computer and use it in GitHub Desktop.
Save ayies128/6559ff6c64e6aa5d4f2ba19de11cdf02 to your computer and use it in GitHub Desktop.
codeigniter use session
// ライブラリ宣言
$this->load->library('session');
$msg = 'セッションにおるぞい';
// セッションに追加
$this->session->set_userdata('zoi', $msg);
// セッションから取得
$zoi = $this->session->userdata('zoi');
// セッションにおるぞい
echo $zoi;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment