InterviewSolution
Saved Bookmarks
| 1. |
Which of the following gives the path for CGI script?(a) remote_host(b) remote_addr(c) query_string(d) path_info |
|
Answer» Correct option is (d) path_info To elaborate: path_info provides the path for the CGI script, query_string gives URL-encoded information that is sent with GET method request, remote_addr gives the IP address of the remote host making the request. |
|