Projekt

Obecné

Profil

Stáhnout (316 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 6daefa8c Petr Lukašík
<?php
2
3
function get_count_lines() {
4
  @$connection = Pg_Connect ("user=dbowner dbname=obtc");
5
    if (!$connection) {
6
      return "85 000";
7
    }
8
    else {
9
      $lines = pg_query($connection, "select count(*) from line");
10
      List($count) = pg_fetch_row($lines, 0, PGSQL_NUM);
11
      return $count;
12
    }
13
}
14
15
16
?>