php - How to find fields sent using POST or GET using chrome or firefox -
i trying login website using curl.so want know how can find fields being sent form on page.
is there special addon can use.i read on google can use ctrl+shift+i can see it.i see this

and firefox?
using chrome developer tools, go network tab.
then find first request file index or similar.
the variables can seen on request headers. while post parameters can found in form body, right below.
example of post form request in chrome:

example of request stackoverflow site:

Comments
Post a Comment