We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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; }