InterviewSolution
Saved Bookmarks
| 1. |
Which variable defines the data type of the content?(a) content_type(b) content_length(c) http_cookie(d) http_user_agent |
|
Answer» Correct choice is (a) content_type Explanation: The data type of the content is defined by content_type variable, used when the client is sending attached content to the server, like file upload etc, the length of the query information is defined by content_length, it’s available only for POST requests. |
|