The APIs provide access to POST and GET data in hosted CGI applications.
See a working example HERE.
<?php include 'api/danode.php'; ?>
Common variables, are available after including the api:
- $_CONFIG - The variables loaded from the web.config file
- $_SERVER - Server related information
- $_GET - GET variables
- $_POST - POST variables
- $_COOKIE - Retrieve cookies set using the setcookie() function
See a working example HERE
use api::danode;
See a working example HERE
import api.danode;
void main(string[] args){
setGET(args); // Set the GET variables from the cmd args
}
See a working example HERE
source("api/danode.r")