[go: up one dir, main page]

Menu

[0376ad]: / web / newId.php  Maximize  Restore  History

Download this file

16 lines (11 with data), 355 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
<?php
require_once("php-common/couchDbRequestor.inc.php");
session_start();
require_once("php-common/checkSession.inc.php");
require_once("php-common/checkHijacking.inc.php");
if ('GET' === $_SERVER['REQUEST_METHOD']) {
$requestor = new CouchDbRequestor(null, false);
$response = $requestor->execute('GET', '_uuids');
echo $response;
}
?>