Passing arguments to run.php
Any argument can be passed to the run window
run.php in the URL.
- A regular web page can link to run.php, with extra arguments in the URL.
- A run on Ancient Brain can link to another run, passing it information in the URL.
You pass information to the run window using:
run.php?args&NEWARG=VALUE
Both NEWARG and VALUE must be alphanumeric.
This is automatically parsed and appears in the run page JavaScript as a global variable:
var AB_arg_NEWARG = "VALUE";
The World can then use it.