Get path variables

From Kolmafia
Revision as of 22:52, 26 November 2014 by imported>Wrldwzrd89 (Sentences should end with periods.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function Syntax

string get_path_variables()

When called by a relay override script, this returns the variables (if there are any after a "?") of the URL that was submitted in the relay browser. This return value does not include the name of the page.

Code Sample

Print path information about how the current override was called.

print( "This script was called by the URL: " + get_path_full() );
if( get_path_variables() != "" ) {
   print( "Which is composed of the page name: " + get_path() );
   print( "followed by a question mark and the variables: "+ get_path_variables() );
}

See Also

form_fields() | get_path_full() | get_path()

Special

When this function is called by any script that is not a relay override, it returns an empty string.