PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Mihajlo Siljanoski   ApiQL.net PHP SQL API Builder   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: ApiQL.net PHP SQL API Builder
Serve an API to query certain SQL database tables
Author: By
Last change:
Date: 3 years ago
Size: 247 bytes
 

Contents

Class file image Download
<?php
error_reporting
(E_ALL);
ini_set('display_errors',1);

require_once
'./config/config.php';
require_once
'./src/Apiql.php';
$ApiQL = new Apiql($config);

$ApiQL->config->debug = true;
$ApiQL->config->token = 123456;

$ApiQL->handleRequest();