You are able to get the query string from the superglobal $_SERVER, just use one of the below methods. You can get it if you use the GET method for forms. POST is not supported.
echo $_SERVER['QUERY_STRING'];
$query_string = $_SERVER['QUERY_STRING']; echo $query_string;
You may get something what looks like this:
Query_String=It+worked&submit=Submit
Mail this!
- Comments (0)
- PingBacks (0)
- TrackBacks (0)

» Latest comments