We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
void RES_LOCATION(const char *string, ...)
Sets response Location to string and changes its status to 303.
None
if ( REQ("login") ) { if ( LOGGED ) RES_LOCATION("dashboard"); else render_login(); } else if ( REQ("logout") ) { npp_usr_logout(); REDIRECT_TO_LANDING; }