1 ) ? " and z.nazwa".lg." like '%".addslashes( $_GET['q'] )."%'" : false )." order by z.nazwa".lg." ASC") or die( mysql_error()); $zad = array(); while ($t_zad = mysql_fetch_assoc($r_zadania)) { if(isset( $_GET['q'] ) and strlen( $_GET['q'] ) ) { $t_zad['nazwa'] = str_replace( $_GET['q'], ''.$_GET['q'].'', $t_zad['nazwa'] ); } $zad[] = $t_zad; } return $zad; } function rady() { if($_GET['id'])list($typ_get) = mysql_fetch_row(mysql_query("select id from rada_typ where id='".(int)$_GET['id']."'")); if($_GET['id_osoba']) list($id_osoba) = mysql_fetch_row(mysql_query("select id from rada_osoby where id='".intval($_GET['id_osoba'])."'")); if(!$typ_get && !$id_osoba) { $r_lista = mysql_query("select nazwa".lg." as nazwa,id,opis from rada_typ"); $tmp = array(); while ($t = mysql_fetch_assoc($r_lista)) { $tmp[] = array( "id" => $t['id'], "nazwa" => $t['nazwa'], "komisja" => (ereg("omisja ",$t['nazwa']) ? 1 : 0 ) ); } return $tmp; } elseif (!$id_osoba) { $name = mysql_fetch_assoc(mysql_query("select nazwa".lg." as nazwa from rada_typ where id='$typ_get'")); $r_osoby = mysql_query("select rada_osoby.imie,rada_osoby.id, rada_osoby.nazwisko, rada_osoby.telefon, rada_osoby.email, rada_osoby.okreg, rada_sl.nazwa".lg." as nazwa from rada_osoby, rada_sl, rada where rada_sl.id=rada.id_funkcja and rada_osoby.id=rada.id_osoba and rada.id_typ='".$typ_get."' order by rada_sl.kolej,rada_osoby.nazwisko ASC "); $tmp = array(); while ($t = mysql_fetch_assoc($r_osoby)) { $tmp[] = array( "id" => $t['id'], "imie" => $t['imie'] ." ".$t['nazwisko'], "telefon" => $t['telefon'], "email" => $t['email'], "stanowisko" => $t['nazwa'], "wiecej" => ($t['okreg'] ? 1 : 0) ); } return array("nazwa" => $name['nazwa'],"lista" => $tmp); } else { $tmp = mysql_fetch_assoc(mysql_query("select * from rada_osoby where id='".$id_osoba."'")); $tmp['okregi'] = "okregi/".$tmp['okreg'].".tpl"; if (file_exists("osoby/".$id_osoba.".jpg")) $tmp['foto']=1; else unset($tmp['foto']); return $tmp; } } function wydzialy($rodzaj) { $tmp = array(); if ($_GET['id'] == "") { if ($rodzaj == "3") { //stowarzyszenia $r_st = mysql_query("SELECT id, nazwa".lg." as nazwa FROM `wydzialy_stowarzyszenia_typy` order by ID ASC"); while(list($id,$nazwa) = mysql_fetch_row($r_st)) { $r_wyd = mysql_query("select id,nazwa".lg." as nazwa,http, telefon,kierownik,adres,email from wydzialy where id_rodzaj='".$rodzaj."' AND id_sto_typ='".$id."' order by nazwapl") or die(mysql_error()); $tmp2=array(); while ($t_wyd = mysql_fetch_array($r_wyd)) { array_push($tmp2,array ( "id" => $t_wyd['id'], "nazwa"=>$t_wyd['nazwa'], "telefon" => $t_wyd['telefon'], "kierownik" => $t_wyd['kierownik'], "adres" => $t_wyd['adres'], "email" => $t_wyd['email'], "url" => $t_wyd['http'] ) ); } array_push($tmp,array("nazwa" => $nazwa,"lista" => $tmp2)); } } else { $r_wyd = mysql_query("select id,nazwa".lg." as nazwa,http, telefon,kierownik,adres,email, opis".lg." as opis from wydzialy where id_rodzaj='".$rodzaj."' order by nazwapl") or die(mysql_error()); $tmp = array(); while ($t_wyd = mysql_fetch_array($r_wyd)) { array_push($tmp,array ( "id" => $t_wyd['id'], "nazwa"=>$t_wyd['nazwa'], "telefon" => $t_wyd['telefon'], "kierownik" => $t_wyd['kierownik'], "adres" => $t_wyd['adres'], "email" => $t_wyd['email'], "url" => $t_wyd['http'], "opis" => $t_wyd['opis'] ) ); } } return ($tmp); } else { $t = mysql_fetch_array(mysql_query("select id,nazwa".lg." as nazwa,opis".lg." as opis,email,telefon,adres,kierownik from wydzialy where id='".$_GET['id']."'")); $r = mysql_query("select id,nazwa from wydzialy_zadania_rodzaje"); $rodzaje = array(); while (list($id_rodzaj,$rodzaj) = mysql_fetch_row($r)) { array_push($rodzaje,array( "id" => $id_rodzaj, "nazwa" => $rodzaj ) ); } $r_zadania = mysql_query("select id,id_rodzaj,nazwa".lg." as nazwa from wydzialy_zadania where id_wydzial='".$_GET['id']."'"); $zad = array(); while ($t_zad = mysql_fetch_array($r_zadania)) { $rPliki = mysql_query( "SELECT id, nazwapl as nazwa FROM pliki WHERE id_zadanie = '".$t_zad['id']."'" ); $pliki = array(); while( $tPliki = mysql_fetch_assoc( $rPliki ) ) { $tPliki['plik'] = array_pop( glob( "dokumenty/".(int)$tPliki['id'].".*" ) ); $pliki[] = $tPliki; } $zad[] = array( "rodzaj" =>$t_zad['id_rodzaj'], "nazwa" => $t_zad['nazwa'], "pliki" => $pliki ); } return array("wydzial" => $t,"zadania" => $zad,"rodzaje" => $rodzaje); } } function posiedzenia() { /* $r_kad = mysql_query("select id, nazwa".lg." as nazwa from posiedzenia_kadencje order by id DESC"); $tmp = array(); while ($t_kad = mysql_fetch_array($r_kad)) { array_push($tmp, array( "id" => $t_kad['id'], "nazwa" => $t_kad['nazwa'] ) ); } $centro -> assign('kad',$tmp); */ $r_pos = mysql_query("select posiedzenia.id,posiedzenia.numer,posiedzenia.data,rada_typ.id as id_typ,rada_typ.nazwa".lg." as nazwa, posiedzenia.id_kadencja as kad, posiedzenia.mp3 from posiedzenia, rada_typ where rada_typ.id=posiedzenia.id_typ order by posiedzenia.data DESC"); $tmp = array(); while ($t_pos = mysql_fetch_array($r_pos)) { list($prot,$prot_f) = mysql_fetch_row(mysql_query("select id,format from protokoly where id_posiedzenie = '$t_pos[id]'")); list($biul,$biul_f) = mysql_fetch_row(mysql_query("select id,format from biuletyny where id_posiedzenie='$t_pos[id]'")); array_push($tmp,array( "id"=> $t_pos['id'], "id_typ"=>$t_pos['id_typ'], "numer"=>$t_pos['numer'], "data"=> $t_pos['data'], "nazwa" => $t_pos['nazwa'], "kad"=> $t_pos['kad'], "prot_f" =>$prot_f, "prot" => $prot, "biul"=>$biul, "biul_f" =>$biul_f, "mp3" => $t_pos['mp3'] ) ); unset($prot,$biul,$prot_f,$biul_f); } // $centro -> assign('pos',$tmp); return $tmp; } function lata() { $r = mysql_query("select DISTINCT YEAR(data) as rok from posiedzenia"); for(;$t = mysql_fetch_row($r); $tmp[] = $t[0]); return $tmp; } function prawo_lokalne() { if ($_GET['fraza']) { $where .= " uchwaly.skrot like '%".trim($_GET['fraza'])."%' and "; } if ($_GET['mies']) { $where .= " MONTH(posiedzenia.data) = '".$_GET['mies']."' and "; } if ($_GET['rok']) { $where .= " YEAR(posiedzenia.data) = '".$_GET['rok']."' and "; } if ($_GET['id']) { $where .= "posiedzenia.id = '".$_GET['id']."' and "; } $where .= " 1 order by posiedzenia.data DESC, uchwaly.numer "; if (!$_GET['szuk'] && !$_GET['miesiac'] && !$_GET['rok'] && !$_GET['id']) $where .= " DESC LIMIT 20"; else $where .= " DESC "; // print $where; $zapytanie = "select uchwaly.id, posiedzenia.numer,posiedzenia.data,SUBSTRING(YEAR(posiedzenia.data),3,2) as rok, uchwaly.numer as uch_nr,uchwaly.skrot from uchwaly ,posiedzenia where uchwaly.id_posiedzenie=posiedzenia.id and ". $where; $r_uch = mysql_query($zapytanie); // print $zapytanie; if ($_SERVER['REMOTE_ADDR'] == "80.53.70.90") { # die($zapytanie); } $tmp = array(); while ($t_u = mysql_fetch_array($r_uch)) { $r_plik = mysql_query("select id,opis,format from uchwaly_pliki where id_uchwala='".$t_u['id']."'"); $tmp2= array(); while ($t_p = mysql_fetch_array($r_plik)) { $path = "./prawo/". $t_p['id'].".".$t_p['format']; if (file_exists($path)) { array_push($tmp2,array( "id" => $t_p['id'], "id_uch" => $t_u['id'], "opis" => $t_p['opis'], "format" => $t_p['format'], "size" => number_format(filesize($path)/1024,0) ) ); } } array_push($tmp,array( "id" => $t_u['id'], "numer" => $t_u['numer'], "data" => $t_u['data'], "rok" => $t_u['rok'], "nr_uch" => $t_u['uch_nr'], "skrot" => $t_u['skrot'], "pliki" => $tmp2 ) ); } # $centro -> assign('uch',$tmp); # $centro -> assign('uch_p',$tmp2); return $tmp; } ?> Brusy Miasto i Gmina Mapy regionu Fotogaleria Deutsch English Wersja polska
Fotogaleria Brusy Brusy
< Powrót do strony głównej • 27 kwietnia 2024r.
Aktualności Napisz do nas!
 Archiwum Szukaj w archiwum:
powrót

2008-06-06 • Zmiany cen biletów PKS Sp. z o.o.


W dniu 5 czerwca Przedsiębiorstwo Komunikacji Samochodowej Spółka z o.o. w Chojnicach poinformowało o zmianie cen biletów autobusowych zwykłych i miesięcznych. Nowy cennik obowiązuje od 1 czerwca br. – komunikacja zwykła oraz od 16 czerwca br. – bilety miesięczne. Szczegółowe tabele z wykazem stref znajdują się poniżej. 


CENNIK OPŁAT PKS CHOJNICE SP. Z O.O.

  KOMUNIKACJA ZWYKŁA -TABELA NR. 1 ważna od 01.06.2008r.

STREFA

 

ODLEGŁ.

W KM

CENA BILETU

NORMALNGO

CENA BILETU

ULGOWEGO 95%

CENA BILETU

ULGOWEGO 78%

CENA BILETU

ULGOWEGO 49%

CENA BILETU

ULGOWEGO 37%

Brutto    

w tym vat

Brutto     

w tym vat

Brutto    

w tym vat

Brutto    

w tym vat

Brutto    

w tym vat

1

Do- 3

3,00

0,20

0,15

0,01

0,66

0,04

1,53

0,10

1,89

0,12

2

4-5

3,50

0,23

0,18

0,01

0,77

0,05

1,79

0,12

2,21

0,14

3

6-10

4,00

0,26

0,20

0,01

0,88

0,06

2,04

0,13

2,52

0,16

4

11-15

5,00

0,33

0,25

0,02

1,10

0,07

2,55

0,17

3,15

0,21

5

16-20

5,80

0,38

0,29

0,02

1,28

0,08

2,96

0,19

3,65

0,24

6

21-25

6,70

0,44

0,34

0,02

1,47

0,10

3,42

0,22

4,22

0,28

7

26-30

7,50

0,49

0,38

0,02

1,65

0,11

3,83

0,25

4,73

0,31

8

31-35

8,40

0,55

0,42

0,03

1,85

0,12

4,28

0,28

5,29

0,35

9

36-40

9,30

0,61

0,47

0,03

2,05

0,13

4,74

0,31

5,86

0,38

10

41-50

9,80

0,64

0,49

0,03

2,16

0,14

5,00

0,33

6,17

0,40

11

51-60

11,00

0,72

0,55

0,04

2,42

0,16

5,61

0,37

6,93

0,45

12

61-70

12,00

0,79

0,60

0,04

2,64

0,17

6,12

0,40

7,56

0,49

13

71-80

12,80

0,84

0,64

0,04

2,82

0,18

6,53

0,43

8,06

0,53

14

81-90

14,00

0,92

0,70

0,05

3,08

0,20

7,14

0,47

8,82

0,58

15

91-100

15,00

0,98

0,75

0,05

3,30

0,22

7,65

0,50

9,45

0,62

16

101-110

16,00

1,05

0,80

0,05

3,52

0,23

8,16

0,53

10,08

0,66

17

111-120

17,00

1,11

0,85

0,06

3,74

0,24

8,67

0,57

10,71

0,70

18

121-130

18,00

1,18

0,90

0,06

3,96

0,26

9,18

0,60

11,34

0,74

19

131-140

19,00

1,24

0,95

0,06

4,18

0,27

9,69

0,63

11,97

0,78

20

141-150

20,00

1,31

1,00

0,07

4,40

0,29

10,20

0,67

12,60

0,82

 

                                                            CENNIK OPŁAT PKS CHOJNICE SP. Z O.O.

                                   BILETY MIESIĘCZNE - TABELA NR. 2 ważna od 16.06.2008r.

STREFA

 

ODLEGŁ.

W KM

CENA BILETU

MIESIĘCZNEGO

OGÓLNODOSTĘPNEGO

CENA BILETU

MIESIĘCZNEGO

Z ULGĄ 78%

CENA BILETU

MIESIĘCZNEGO

Z ULGĄ 49%

CENA BILETU

MIESIĘCZNEGO

Z ULGĄ 37%

Brutto    

w tym vat

Brutto    

w tym vat

Brutto    

w tym vat

Brutto    

w tym vat

1

DO-3

102,00

6,67

22,44

1,47

52,02

3,40

64,26

4,20

2

4-5

119,00

7,79

26,18

1,71

60,69

3,97

74,97

4,90

3

6-10

136,00

8,90

29,92

1,96

69,36

4,54

85,68

5,61

4

11-15

170,00

11,12

37,40

2,45

86,70

5,67

107,10

7,01

5

16-20

197,00

12,89

43,34

2,84

100,47

6,57

124,11

8,12

6

21-25

228,00

14,92

50,16

3,28

116,28

7,61

143,64

9,40

7

26-30

255,00

16,68

56,10

3,67

130,05

8,51

160,65

10,51

8

31-35

286,00

18,71

62,92

4,12

145,86

9,54

180,18

11,79

9

36-40

316,00

20,67

69,52

4,55

161,16

10,54

199,08

13,02

10

41-50

333,00

21,79

73,26

4,79

169,83

11,11

209,79

13,72

11

51-60

374,00

24,47

82,28

5,38

190,74

12,48

235,62

15,41

12

61-70

408,00

26,69

89,76

5,87

208,08

13,61

257,04

16,82

13

71-80

435,00

28,46

95,70

6,26

221,85

14,51

274,05

17,93

14

81-90

476,00

31,14

104,72

6,85

242,76

15,88

299,88

19,62

15

91-100

510,00

33,36

112,20

7,34

260,10

17,02

321,30

21,02




cms Brusy - Strona Główna Napisz do nas!