The sqlpage.header function

Introduced in SQLPage 0.7.2.

Reads a header with the given name from the request. Returns the value of the header as text, or NULL if the header is not present.

Example

Log the User-Agent of the browser making the request in the database:

INSERT INTO user_agent_log (user_agent) VALUES (sqlpage.header('user-agent'));

Parameters

name

The name of the HTTP header to read.