How to set $_GET variable

前端 未结 9 473
梦如初夏
梦如初夏 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:32

    For the form, use:

    and for getting the value, use the get method as follows:

    $value = $_GET['name_to_send_using_get'];
    

提交回复
热议问题