18 lines
448 B
PHP
18 lines
448 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: leanderschmedemann
|
|
* Date: 27/03/2017
|
|
* Time: 14:07
|
|
*/
|
|
|
|
require_once('includes.inc.php');
|
|
$uid = $_GET['uid'];
|
|
$length = ($_GET['length'] && gettype(+$_GET['length']) == 'integer') ? +$_GET['length'] : 10;
|
|
$database = new Database();
|
|
|
|
$questions_count = $database->query('SELECT COUNT(*) FROM "Questions"')['data'];
|
|
var_dump($questions_count);
|
|
print_r($questions_count);
|
|
|
|
?>
|