0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PHPでユーザー登録

Last updated at Posted at 2022-01-28

ユーザー登録の処理フロー

  1. POST送信を確認する
  2. POST送信されて来た値を変数に代入する
  3. 各種バリデーションを行う
    4. Email重複チェックはDBに接続し、同じEmailが登録されていないか確認する
  4. 例外処理を用いてDB接続する
  5. SQLを用意する
  6. プリペアドステートメントで値を入れる。現在時刻はdate('Y-m-d H:i:s')として入れる
  7. クエリがきちんと投げられていた場合、ログイン有効期限を1時間にし、最終ログイン日時を現在時刻に更新
  8. SessionにユーザーIDや最終ログイン日時・ログイン有効期限を格納する
  9. headerでマイページへ遷移
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?