Can I use $_POST & $_GET at the same time?

前端 未结 5 967
长发绾君心
长发绾君心 2020-12-20 01:23

I have a following form:

5条回答
  •  遥遥无期
    2020-12-20 01:35

    I frequently use POST and GET together, so that the PHP side can know whether it was a normal form submission or via AJAX.

    
    .
    .
    .
    

    vs

    ajaxSubmit( 'dest.php?a=1', ... );
    

提交回复
热议问题