Files
postgrachelor-php/start.php
2017-03-27 14:51:10 +02:00

18 lines
430 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"');
echo pg_last_error();
echo $questions_count;
?>