/[informatika.old]/html/index.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /html/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by dpavlin, Thu Jul 13 08:21:14 2000 UTC revision 1.7.2.1 by dpavlin, Mon Jul 31 18:03:05 2000 UTC
# Line 5  Line 5 
5  <?  <?
6    
7          if (isset($kontakt_osoba_id)) {          if (isset($kontakt_osoba_id)) {
8                  $result = pg_Exec ($conn, "select ime,prezime,passwd from kontakt_osobe where aktivna=true and id=$kontakt_osoba_id");                  $sth = $dbh->prepare("select ime,prezime,passwd from kontakt_osobe where aktivna=true and id=$kontakt_osoba_id");
9                  $row=pg_fetch_array($result,0);                  $sth->execute();
10                    $row=$sth->fetchrow_hash();
11                  print "<small>Trenutno ste prijavljeni kao $row[ime] $row[prezime], ako je to krivo odaberite <a href=\"$PHP_SELF?what=relogin\">ovaj link</a>.</small>";                  print "<small>Trenutno ste prijavljeni kao $row[ime] $row[prezime], ako je to krivo odaberite <a href=\"$PHP_SELF?what=relogin\">ovaj link</a>.</small>";
12          }          }
13  #       print "--$kontakt_osoba_id--";  #       print "--$kontakt_osoba_id--";

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.7.2.1

  ViewVC Help
Powered by ViewVC 1.1.26