0
2

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 5 years have passed since last update.

Notice: Undefined indexエラー

Last updated at Posted at 2019-11-12

気づけばプロ並みPHPを進める上で

$staff_code=$_POST['staffcode'])

の部分がなぜかNotice: Undefined indexエラーと表示されます。

綴りはあってるはずなのでググってみると
$_POSTなどで受け取る時によく発生するエラーらしい事が分かりました。

Notice: Undefined indexエラーとは、未定義の配列の要素を使用した時に出るエラー。

$staff_code=(!empty($_POST['staffcode']))

↑に変更する事で解決しました。

参考URL:https://qiita.com/wakahara3/items/bb7c8d7a1673b161abe7

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?