0
0

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

$_getと$_postと$_REQUEST

Posted at

//html

お名前:

このとき、method="get"に注目する。
method="get"の記述がされているときは、phpで下記のように記述する。


    お名前: 

注目すべきは、$_get['my_name']の部分。

htmlでmethod="get"と指定しているので、phpでも$_getとしている。
他にも、method="post"と指定すると、phpでも&_postとする必要がある。

両者の違いは、パスワード等の秘密にしたいものをpostで記述し、それ以外のものをgetとすることが多い。

また、同様の動きをするものにphpで$_REQUESTと記述することもできる。
これは、先に受け取るものがgetかpostか分からない場合に使用する。

0
0
2

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?