Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 885 Bytes

README.md

File metadata and controls

42 lines (31 loc) · 885 Bytes

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")