How to set $_GET variable

前端 未结 9 471
梦如初夏
梦如初夏 2020-12-03 21:22

How do i set the variable that the $_GET function will be able to use, w/o submitting a form with action = GET?

9条回答
  •  青春惊慌失措
    2020-12-03 21:54

    You can use GET variables in the action parameter of your form element. Example:

    ...

    This will give you foo as a GET variable and quu as a POST variable.

提交回复
热议问题