Assume that your url is http://www.test.com/test.php?f=test, then f is the parameter name, test is the value of f, and the parameters submitted by get are all in the address bar. , post submission, there is no post submission parameter in the url address bar, "$_GET['F'] is not defined" It should be because the address bar does not have the f parameter, and it cannot get the value
Assume that your url is http://www.test.com/test.php?f=test, then f is the parameter name, test is the value of f, and the parameters submitted by get are all in the address bar. , post submission, there is no post submission parameter in the url address bar, "$_GET['F'] is not defined" It should be because the address bar does not have the f parameter, and it cannot get the value
It’s not that there is no f in the get request,
Is 'F' the value of the input name attribute?