Skip to content

Latest commit

 

History

History

api

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

APIs

The APIs provide access to POST and GET data in hosted CGI applications.

PHP

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

PERL

See a working example HERE

     use api::danode;

D

See a working example HERE

     import api.danode;
     
     void main(string[] args){
       setGET(args);              // Set the GET variables from the cmd args
     }

R

See a working example HERE

     source("api/danode.r")